master
20918 12 months ago
parent e1c5c7da69
commit c6ccfcc133

@ -5,6 +5,7 @@ import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
@Controller @Controller
@RequestMapping("/") @RequestMapping("/system/userExamine")
public class SysUserExamineController extends BaseController { public class SysUserExamineController extends BaseController {
} }

@ -196,6 +196,22 @@ public class SysUser extends BaseEntity
@Excel(name = "健康状况") @Excel(name = "健康状况")
private String helthy; private String helthy;
/** 审核状态 */
@Excel(name = "审核状态")
private String examine;
public SysUser(String examine) {
this.examine = examine;
}
public String getExamine() {
return examine;
}
public void setExamine(String examine) {
this.examine = examine;
}
/** 部门对象 */ /** 部门对象 */
@Excels({ @Excels({
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT), @Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
@ -495,6 +511,7 @@ public class SysUser extends BaseEntity
", startdate='" + startdate + '\'' + ", startdate='" + startdate + '\'' +
", enddate='" + enddate + '\'' + ", enddate='" + enddate + '\'' +
", helthy='" + helthy + '\'' + ", helthy='" + helthy + '\'' +
", examine='" + examine + '\'' +
", dept=" + dept + ", dept=" + dept +
", roles=" + roles + ", roles=" + roles +
", roleIds=" + Arrays.toString(roleIds) + ", roleIds=" + Arrays.toString(roleIds) +

@ -44,7 +44,7 @@ public class TdExamnum extends BaseEntity
/** 试题类型 */ /** 试题类型 */
@Excel(name = "试题类型") @Excel(name = "试题类型")
private String tyep; private String type;
public void setId(Long id) public void setId(Long id)
{ {
@ -100,14 +100,14 @@ public class TdExamnum extends BaseEntity
{ {
return dept; return dept;
} }
public void setTyep(String tyep) public void setType(String type)
{ {
this.tyep = tyep; this.type = type;
} }
public String getTyep() public String getType()
{ {
return tyep; return type;
} }
@Override @Override
@ -119,7 +119,7 @@ public class TdExamnum extends BaseEntity
.append("startTime", getStartTime()) .append("startTime", getStartTime())
.append("endTime", getEndTime()) .append("endTime", getEndTime())
.append("dept", getDept()) .append("dept", getDept())
.append("tyep", getTyep()) .append("type", getType())
.toString(); .toString();
} }
} }

@ -11,11 +11,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="startTime" column="startTime" /> <result property="startTime" column="startTime" />
<result property="endTime" column="endTime" /> <result property="endTime" column="endTime" />
<result property="dept" column="dept" /> <result property="dept" column="dept" />
<result property="tyep" column="tyep" /> <result property="type" column="type" />
</resultMap> </resultMap>
<sql id="selectTdExamnumVo"> <sql id="selectTdExamnumVo">
select id, userName, examResult, startTime, endTime, dept, tyep from td_examnum select id, userName, examResult, startTime, endTime, dept, type from td_examnum
</sql> </sql>
<select id="selectTdExamnumList" parameterType="TdExamnum" resultMap="TdExamnumResult"> <select id="selectTdExamnumList" parameterType="TdExamnum" resultMap="TdExamnumResult">
@ -26,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null "> and startTime = #{startTime}</if> <if test="startTime != null "> and startTime = #{startTime}</if>
<if test="endTime != null "> and endTime = #{endTime}</if> <if test="endTime != null "> and endTime = #{endTime}</if>
<if test="dept != null and dept != ''"> and dept = #{dept}</if> <if test="dept != null and dept != ''"> and dept = #{dept}</if>
<if test="tyep != null and tyep != ''"> and tyep = #{tyep}</if> <if test="type != null and type != ''"> and type = #{type}</if>
</where> </where>
</select> </select>
@ -43,7 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null">startTime,</if> <if test="startTime != null">startTime,</if>
<if test="endTime != null">endTime,</if> <if test="endTime != null">endTime,</if>
<if test="dept != null">dept,</if> <if test="dept != null">dept,</if>
<if test="tyep != null">tyep,</if> <if test="type != null">type,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="userName != null">#{userName},</if> <if test="userName != null">#{userName},</if>
@ -51,7 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null">#{startTime},</if> <if test="startTime != null">#{startTime},</if>
<if test="endTime != null">#{endTime},</if> <if test="endTime != null">#{endTime},</if>
<if test="dept != null">#{dept},</if> <if test="dept != null">#{dept},</if>
<if test="tyep != null">#{tyep},</if> <if test="type != null">#{type},</if>
</trim> </trim>
</insert> </insert>
@ -63,7 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null">startTime = #{startTime},</if> <if test="startTime != null">startTime = #{startTime},</if>
<if test="endTime != null">endTime = #{endTime},</if> <if test="endTime != null">endTime = #{endTime},</if>
<if test="dept != null">dept = #{dept},</if> <if test="dept != null">dept = #{dept},</if>
<if test="tyep != null">tyep = #{tyep},</if> <if test="type != null">type = #{type},</if>
</trim> </trim>
where id = #{id} where id = #{id}
</update> </update>

Loading…
Cancel
Save