Administrator
6 days ago 5a6a44914add6b62c8ff2b26191a3dc8802f8821
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cc.mrbird.febs.mall.dto.clothes;
 
import lombok.Data;
 
@Data
public class AdminClothesSocialListDto {
 
 
    private String name;
 
    /**
     * 状态 0-待审核 1-审核通过  2-审核失败
     */
    private Integer state;
 
    private Long categoryId;
 
    private String startTime;
 
    private String endTime;
}