提交 | 用户 | age | ||
fb4dba | 1 | package com.hz.his.dto.treat; |
F | 2 | |
3 | import lombok.Data; | |
4 | ||
5 | /** | |
6 | * @author fwq | |
7 | * 术后视频关联项目 | |
8 | * */ | |
9 | @Data | |
10 | public class TreatAfterProjectDto { | |
11 | /**项目关联类型,不传默认项目sku*/ | |
12 | private Integer type; | |
13 | /**公共标识*/ | |
2350cc | 14 | private String commonId; |
F | 15 | |
16 | /**类型-项目SKU*/ | |
17 | public static final Integer TYPE_SKU = 0; | |
18 | /**类型-项目SPU*/ | |
19 | public static final Integer TYPE_SPU = 1; | |
20 | /**类型-项目所属末级分类*/ | |
21 | public static final Integer TYPE_TYPE = 2; | |
fb4dba | 22 | } |