Administrator
2025-07-23 9feb0b26e8c150b4b34e5bbc121c9d5eb1861d7e
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;
}