| | |
| | | /**人员类型,不传默认医生类型*/ |
| | | private Integer type; |
| | | /**人员标识(员工标识)*/ |
| | | private Integer commonId; |
| | | private String commonId; |
| | | |
| | | /**人员类型-医生*/ |
| | | public static final Integer TYPE_DOCTOR = 0; |
| | | /**人员类型-护士*/ |
| | | public static final Integer TYPE_NURSE = 1; |
| | | } |
| | |
| | | /**项目关联类型,不传默认项目sku*/ |
| | | private Integer type; |
| | | /**公共标识*/ |
| | | private Integer commonId; |
| | | private String commonId; |
| | | |
| | | /**类型-项目SKU*/ |
| | | public static final Integer TYPE_SKU = 0; |
| | | /**类型-项目SPU*/ |
| | | public static final Integer TYPE_SPU = 1; |
| | | /**类型-项目所属末级分类*/ |
| | | public static final Integer TYPE_TYPE = 2; |
| | | } |
| | |
| | | * */ |
| | | @Data |
| | | public class TreatAfterVideoDto{ |
| | | /**人员信息*/ |
| | | /*******************2022-11-17:条件暂时是并且的关系***************************/ |
| | | /**人员条件集合*/ |
| | | private List<TreatAfterEmployeeDto> employeeDtoList; |
| | | /**项目信息*/ |
| | | /**项目条件集合*/ |
| | | private List<TreatAfterProjectDto> projectDtoList; |
| | | } |