| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import lombok.ToString; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | |
| | | * @author wzh |
| | | */ |
| | | @Data |
| | | @ToString |
| | | public class UserParamDto { |
| | | |
| | | /** 用户id */ |
| | |
| | | /** 用户兴趣爱好json */ |
| | | private String userInterestsJson; |
| | | |
| | | /** 科室关系json */ |
| | | private String departmentJson; |
| | | |
| | | /** email */ |
| | | private String email; |
| | | |
| | |
| | | /** 搜索:做过项目 */ |
| | | private String projectName; |
| | | |
| | | /** 医生id */ |
| | | private String doctorId; |
| | | /** 部门id */ |
| | | private String department; |
| | | |
| | | |
| | | /** 用户消费时间(开始),格式:yyyy-MM-dd HH:mm:ss */ |
| | | private String consumeStartTime; |
| | |
| | | private String createStartTime; |
| | | /** 搜索:用户创建时间(结束),格式:yyyy-MM-dd HH:mm:ss */ |
| | | private String createEndTime; |
| | | |
| | | public UserParamDto() { |
| | | } |
| | | |
| | | /**性别-未知*/ |
| | | public static final Integer SEX_UNKNOWN = 0; |
| | |
| | | /*同步领建的参数*/ |
| | | private boolean internal; |
| | | |
| | | //修改操作人名称 |
| | | private String opMan; |
| | | |
| | | //修改操作人标识 |
| | | private String opId; |
| | | |
| | | //修改操作的备注 |
| | | private String note; |
| | | |
| | | |
| | | |
| | | } |