dashboard
repositories
filestore
activity
search
login
main
/
xc-mall
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(mall): 添加衣服设计相关接口和模型
Administrator
2025-07-02
4c9c358ede7e52d6063716b3374dd437910cd417
[xc-mall.git]
/
src
/
main
/
java
/
cc
/
mrbird
/
febs
/
mall
/
dto
/
clothes
/
AdminClothesTypeInfoDto.java
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;
}