Administrator
2025-08-04 b2eec14bf5a5924d17640e484810f75663c1f38b
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;
 
}