Administrator
2025-07-10 1bd4ff2dea7dde4592c31f6911255c9d28d45f87
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;
}