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;
@Controller
@RequestMapping("/")
@RequestMapping("/system/userExamine")
public class SysUserExamineController extends BaseController {
}

@ -196,6 +196,22 @@ public class SysUser extends BaseEntity
@Excel(name = "健康状况")
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({
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
@ -495,6 +511,7 @@ public class SysUser extends BaseEntity
", startdate='" + startdate + '\'' +
", enddate='" + enddate + '\'' +
", helthy='" + helthy + '\'' +
", examine='" + examine + '\'' +
", dept=" + dept +
", roles=" + roles +
", roleIds=" + Arrays.toString(roleIds) +

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

@ -11,11 +11,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="startTime" column="startTime" />
<result property="endTime" column="endTime" />
<result property="dept" column="dept" />
<result property="tyep" column="tyep" />
<result property="type" column="type" />
</resultMap>
<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>
<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="endTime != null "> and endTime = #{endTime}</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>
</select>
@ -43,7 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null">startTime,</if>
<if test="endTime != null">endTime,</if>
<if test="dept != null">dept,</if>
<if test="tyep != null">tyep,</if>
<if test="type != null">type,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<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="endTime != null">#{endTime},</if>
<if test="dept != null">#{dept},</if>
<if test="tyep != null">#{tyep},</if>
<if test="type != null">#{type},</if>
</trim>
</insert>
@ -63,7 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="startTime != null">startTime = #{startTime},</if>
<if test="endTime != null">endTime = #{endTime},</if>
<if test="dept != null">dept = #{dept},</if>
<if test="tyep != null">tyep = #{tyep},</if>
<if test="type != null">type = #{type},</if>
</trim>
where id = #{id}
</update>

Loading…
Cancel
Save