Administrator
2026-02-04 53d8eb1656b2e28f2054ef0eecfe8e80d8b5e8bf
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.mall.dto.clothes;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class AdminClothesTypeInfoDto {
 
    private Long typeId;
 
    private List<Long> chooseIds;
}