| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | |
| | | public String getQmImg() { |
| | | return qmImg; |
| | | } |
| | | |
| | | public void setQmImg(String qmImg) { |
| | | this.qmImg = qmImg; |
| | | } |
| | | |
| | | @ApiModelProperty(value = "签名图片") |
| | | private String qmImg; |
| | | |
| | | public void setHospId(String hospId) { |
| | | this.hospId = hospId; |
| | | } |
| | |
| | | .append("homeTownDesc", getHomeTownDesc()) |
| | | .append("openId", getOpenId()) |
| | | .append("jobCategory", getJobCategory()) |
| | | .append("qmImg", getQmImg()) |
| | | .append("deleted", getDeleted()) |
| | | .toString(); |
| | | } |
| | |
| | | <result property="homeTownDesc" column="home_town_desc"/> |
| | | <result property="openId" column="open_id"/> |
| | | <result property="jobCategory" column="job_category"/> |
| | | <result property="qmImg" column="qm_img"/> |
| | | <result property="deleted" column="deleted"/> |
| | | </resultMap> |
| | | |
| | |
| | | wbm, |
| | | home_town_desc, |
| | | open_id, |
| | | job_category, |
| | | job_category,qm_img, |
| | | deleted |
| | | from dict_user_info |
| | | </sql> |
| | |
| | | a.home_town_desc, |
| | | a.open_id, |
| | | a.job_category, |
| | | a.qmImg, |
| | | a.deleted, |
| | | b.user_id as sub_user_id, |
| | | b.dept_id as sub_dept_id, |
| | |
| | | <if test="homeTownDesc != null">home_town_desc,</if> |
| | | <if test="openId != null">open_id,</if> |
| | | <if test="jobCategory != null">job_category,</if> |
| | | <if test="qmImg != null">qm_img,</if> |
| | | <if test="deleted != null">deleted,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | |
| | | <if test="homeTownDesc != null">#{homeTownDesc},</if> |
| | | <if test="openId != null">#{openId},</if> |
| | | <if test="jobCategory != null">#{jobCategory},</if> |
| | | <if test="qmImg != null">#{qmImg},</if> |
| | | <if test="deleted != null">#{deleted},</if> |
| | | </trim> |
| | | </insert> |
| | |
| | | <if test="homeTownDesc != null">home_town_desc = #{homeTownDesc},</if> |
| | | <if test="openId != null">open_id = #{openId},</if> |
| | | <if test="jobCategory != null">job_category = #{jobCategory},</if> |
| | | <if test="qmImg != null">qm_img = #{qmImg},</if> |
| | | <if test="deleted != null">deleted = #{deleted},</if> |
| | | </trim> |
| | | where id = #{id} |