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;
|
|
}
|