| | |
| | | package com.hz.phis.dt.user; |
| | | |
| | | import com.gitee.sunchenbin.mybatis.actable.annotation.Column; |
| | | import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /**用户详情数据返回实体*/ |
| | | @Data |
| | |
| | | private String email; |
| | | /**头像*/ |
| | | private String imgUrl; |
| | | |
| | | private String hisId; |
| | | private String userBelongingType; |
| | | //电网咨询顾问(TMK) (Employee id) |
| | | private String internetCorpUserId; |
| | | //所属护士 |
| | | private String nurseCorpUserId; |
| | | //第一次到店时间 |
| | | private Date firstArriveTime; |
| | | //第一次下单时间(结账成功的时间) |
| | | private Date firstPayOrderTime; |
| | | //最后一次执行时间 |
| | | private Date lastDeductionTime; |
| | | |
| | | |
| | | } |