切换店铺统计 √
下单选择会员 √ 注册会员 √ 完善手机号 √ 会员流水信息同步 √
This commit is contained in:
@@ -12,6 +12,7 @@ import lombok.EqualsAndHashCode;
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商品规格
|
||||
@@ -81,5 +82,9 @@ public class ShopProdSpecDTO extends TreeNode<ShopProdSpecDTO> implements Serial
|
||||
*/
|
||||
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 受影响的规格id列表
|
||||
*/
|
||||
@JSONField(serialize = false)
|
||||
private List<Long> affectedIdList;
|
||||
}
|
||||
@@ -25,6 +25,7 @@ public interface ShopProdUnitService extends IService<ShopProdUnit> {
|
||||
|
||||
/**
|
||||
* 获取商品单位列表
|
||||
*
|
||||
* @param param 查询参数
|
||||
* @return 商品单位列表数据
|
||||
*/
|
||||
@@ -32,6 +33,7 @@ public interface ShopProdUnitService extends IService<ShopProdUnit> {
|
||||
|
||||
/**
|
||||
* 获取商品单位详情
|
||||
*
|
||||
* @param id 商品单位ID
|
||||
* @return 商品单位详情数据
|
||||
*/
|
||||
@@ -41,8 +43,9 @@ public interface ShopProdUnitService extends IService<ShopProdUnit> {
|
||||
* 新增商品单位
|
||||
*
|
||||
* @param dto 商品单位数据
|
||||
* @return 新增商品单位ID
|
||||
*/
|
||||
void addShopProdUnit(ShopProdUnitDTO dto);
|
||||
Long addShopProdUnit(ShopProdUnitDTO dto);
|
||||
|
||||
/**
|
||||
* 更新商品单位
|
||||
|
||||
Reference in New Issue
Block a user