4 changed files with 63 additions and 7 deletions
@ -0,0 +1,58 @@ |
|||
package com.qs.serve.modules.tbs.entity.bo; |
|||
|
|||
import lombok.Data; |
|||
import org.hibernate.validator.constraints.Length; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 预算 Bo |
|||
* @author YenHex |
|||
* @since 2022-11-12 |
|||
*/ |
|||
@Data |
|||
public class TbsBudgetUpdateAfterStartBo implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** id */ |
|||
private Long id; |
|||
|
|||
/** 预算编码 */ |
|||
private String budgetCode; |
|||
|
|||
/** |
|||
* 成本中心类型: |
|||
center, |
|||
customer, |
|||
bizRegion, |
|||
saleRegion, |
|||
*/ |
|||
|
|||
/** 备注 */ |
|||
@Length(max = 255,message = "备注长度不能超过255字") |
|||
private String remark; |
|||
|
|||
/** 品牌Id列表 */ |
|||
private List<Long> brandIds; |
|||
|
|||
/** 品类Id列表 */ |
|||
private List<Long> categoryIds; |
|||
|
|||
/** 系列Id列表 */ |
|||
private List<Long> seriesIds; |
|||
|
|||
/** 商品Id列表(前端显示为sku) */ |
|||
private List<Long> spuIds; |
|||
|
|||
/** skuId列表(前端显示为单品) */ |
|||
private List<Long> skuIds; |
|||
|
|||
private String[] attachIds; |
|||
|
|||
|
|||
} |
|||
|
Loading…
Reference in new issue