fwq
2022-11-03 d83e83f55fab15f9eed7e9b747f23293d855cdeb
提交 | 用户 | age
a4c260 1 package com.hz.crm.dto;
F 2
3
4 import lombok.Data;
5
6 /**
7  * 商品sku扩展
8  * */
9 @Data
10 public class GoodsSkuDto extends PageDto{
11
12     /**编号*/
13     private String codeNo;
14     /**搜索*/
15     private String keyWord;
16     /**商品类型*/
17     private Integer goodsType;
3b0879 18     /**是否过滤团购商品:1过滤(不返回)团购商品,0不过滤返回*/
a4c260 19     private Integer isFilterGroup;
3b0879 20     /**是否团购商品,0否1是*/
F 21     private Integer isGroup;
d83e83 22     /**是否过滤积分商品:1过滤(不返回)积分商品,0不过滤返回*/
F 23     private Integer isFilterIntegral;
a4c260 24 }