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