Administrator
2026-02-12 ba22bc8e7a84552876b92f4ef5eb0f11c4bb816c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.mall.vo.clothes;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class AdminClothesPrintOrderVo {
    private String orderNo;
    private String typeName;
    private String typeFront;
    private String typeBack;
    private String clothName;
    private String clothCode;
    private String sizeName;
    private String sizeCode;
    private String artName;
    private String artCode;
    private List<AdminClothesPrintPatternVo> patterns;
    private List<AdminClothesPrintLocationVo> locations;
 
    private AdminClothesPrintMemberStatureVo memberStature;
 
}