取水口,村管员添加机构id字段
This commit is contained in:
parent
a26f00914d
commit
61c7ea0cf5
@ -70,8 +70,8 @@ private static final long serialVersionUID = 1L;
|
|||||||
private String contactInformation;
|
private String contactInformation;
|
||||||
|
|
||||||
/** 任职日期 */
|
/** 任职日期 */
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "任职日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "任职日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
@ApiModelProperty("任职日期")
|
@ApiModelProperty("任职日期")
|
||||||
private Date appointmentDate;
|
private Date appointmentDate;
|
||||||
|
|
||||||
@ -84,5 +84,10 @@ private static final long serialVersionUID = 1L;
|
|||||||
@Excel(name = "工作经历")
|
@Excel(name = "工作经历")
|
||||||
@ApiModelProperty("工作经历")
|
@ApiModelProperty("工作经历")
|
||||||
private String workExperience;
|
private String workExperience;
|
||||||
|
/** 所属机构 */
|
||||||
|
@Excel(name = "所属机构")
|
||||||
|
@ApiModelProperty("所属机构")
|
||||||
|
private Long deptId;
|
||||||
|
|
||||||
}
|
|
||||||
|
}
|
||||||
|
@ -44,8 +44,8 @@ private static final long serialVersionUID = 1L;
|
|||||||
private String location;
|
private String location;
|
||||||
|
|
||||||
/** 建造日期 */
|
/** 建造日期 */
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "建造日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "建造日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
@ApiModelProperty("建造日期")
|
@ApiModelProperty("建造日期")
|
||||||
private Date constructionDate;
|
private Date constructionDate;
|
||||||
|
|
||||||
@ -55,8 +55,8 @@ private static final long serialVersionUID = 1L;
|
|||||||
private Long maintenanceStatus;
|
private Long maintenanceStatus;
|
||||||
|
|
||||||
/** 上次维护日期 */
|
/** 上次维护日期 */
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "上次维护日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "上次维护日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
@ApiModelProperty("上次维护日期")
|
@ApiModelProperty("上次维护日期")
|
||||||
private Date lastMaintenanceDate;
|
private Date lastMaintenanceDate;
|
||||||
|
|
||||||
@ -90,4 +90,10 @@ private static final long serialVersionUID = 1L;
|
|||||||
@ApiModelProperty("取水口参数")
|
@ApiModelProperty("取水口参数")
|
||||||
private String parameter;
|
private String parameter;
|
||||||
|
|
||||||
}
|
/** 所属机构 */
|
||||||
|
@Excel(name = "所属机构")
|
||||||
|
@ApiModelProperty("所属机构")
|
||||||
|
private Long deptId;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -22,10 +22,11 @@
|
|||||||
<result property="updateTime" column="update_time" />
|
<result property="updateTime" column="update_time" />
|
||||||
<result property="createBy" column="create_by" />
|
<result property="createBy" column="create_by" />
|
||||||
<result property="updateBy" column="update_by" />
|
<result property="updateBy" column="update_by" />
|
||||||
|
<result property="deptId" column="dept_id" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="selectNgInformationVillageKeeperVo">
|
<sql id="selectNgInformationVillageKeeperVo">
|
||||||
select village_keeper_id, official_id, name, position, belonging_region, gender, age, party_membership, contact_information, appointment_date, education_background, work_experience, remark, create_time, update_time, create_by, update_by from ng_Information_village_keeper
|
select village_keeper_id, official_id, name, position, belonging_region, gender, age, party_membership, contact_information, appointment_date, education_background, work_experience, remark, create_time, update_time, create_by, update_by, dept_id from ng_Information_village_keeper
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<select id="selectNgInformationVillageKeeperList" parameterType="NgInformationVillageKeeper" resultMap="NgInformationVillageKeeperResult">
|
<select id="selectNgInformationVillageKeeperList" parameterType="NgInformationVillageKeeper" resultMap="NgInformationVillageKeeperResult">
|
||||||
@ -43,6 +44,7 @@
|
|||||||
<if test="appointmentDate != null "> and appointment_date = #{appointmentDate}</if>
|
<if test="appointmentDate != null "> and appointment_date = #{appointmentDate}</if>
|
||||||
<if test="educationBackground != null and educationBackground != ''"> and education_background = #{educationBackground}</if>
|
<if test="educationBackground != null and educationBackground != ''"> and education_background = #{educationBackground}</if>
|
||||||
<if test="workExperience != null and workExperience != ''"> and work_experience = #{workExperience}</if>
|
<if test="workExperience != null and workExperience != ''"> and work_experience = #{workExperience}</if>
|
||||||
|
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -71,6 +73,7 @@
|
|||||||
<if test="updateTime != null">update_time,</if>
|
<if test="updateTime != null">update_time,</if>
|
||||||
<if test="createBy != null">create_by,</if>
|
<if test="createBy != null">create_by,</if>
|
||||||
<if test="updateBy != null">update_by,</if>
|
<if test="updateBy != null">update_by,</if>
|
||||||
|
<if test="deptId != null">dept_id,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="villageKeeperId != null">#{villageKeeperId},</if>
|
<if test="villageKeeperId != null">#{villageKeeperId},</if>
|
||||||
@ -90,6 +93,7 @@
|
|||||||
<if test="updateTime != null">#{updateTime},</if>
|
<if test="updateTime != null">#{updateTime},</if>
|
||||||
<if test="createBy != null">#{createBy},</if>
|
<if test="createBy != null">#{createBy},</if>
|
||||||
<if test="updateBy != null">#{updateBy},</if>
|
<if test="updateBy != null">#{updateBy},</if>
|
||||||
|
<if test="deptId != null">#{deptId},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
@ -112,6 +116,7 @@
|
|||||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||||
<if test="createBy != null">create_by = #{createBy},</if>
|
<if test="createBy != null">create_by = #{createBy},</if>
|
||||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||||
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where village_keeper_id = #{villageKeeperId}
|
where village_keeper_id = #{villageKeeperId}
|
||||||
</update>
|
</update>
|
||||||
|
@ -23,10 +23,11 @@
|
|||||||
<result property="updateTime" column="update_time" />
|
<result property="updateTime" column="update_time" />
|
||||||
<result property="createBy" column="create_by" />
|
<result property="createBy" column="create_by" />
|
||||||
<result property="updateBy" column="update_by" />
|
<result property="updateBy" column="update_by" />
|
||||||
|
<result property="deptId" column="dept_id" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="selectNgInformationWaterIntakeVo">
|
<sql id="selectNgInformationWaterIntakeVo">
|
||||||
select intake_id, well_id, device_code, location, construction_date, maintenance_status, last_maintenance_date, water_quality, water_extraction_volume, type, responsible_person, contact_information, parameter, remark, create_time, update_time, create_by, update_by from ng_information_water_intake
|
select intake_id, well_id, device_code, location, construction_date, maintenance_status, last_maintenance_date, water_quality, water_extraction_volume, type, responsible_person, contact_information, parameter, remark, create_time, update_time, create_by, update_by, dept_id from ng_information_water_intake
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<select id="selectNgInformationWaterIntakeList" parameterType="NgInformationWaterIntake" resultMap="NgInformationWaterIntakeResult">
|
<select id="selectNgInformationWaterIntakeList" parameterType="NgInformationWaterIntake" resultMap="NgInformationWaterIntakeResult">
|
||||||
@ -40,10 +41,11 @@
|
|||||||
<if test="lastMaintenanceDate != null "> and last_maintenance_date = #{lastMaintenanceDate}</if>
|
<if test="lastMaintenanceDate != null "> and last_maintenance_date = #{lastMaintenanceDate}</if>
|
||||||
<if test="waterQuality != null and waterQuality != ''"> and water_quality = #{waterQuality}</if>
|
<if test="waterQuality != null and waterQuality != ''"> and water_quality = #{waterQuality}</if>
|
||||||
<if test="waterExtractionVolume != null "> and water_extraction_volume = #{waterExtractionVolume}</if>
|
<if test="waterExtractionVolume != null "> and water_extraction_volume = #{waterExtractionVolume}</if>
|
||||||
<if test="type != null "> and type = #{type}</if>
|
<if test="type != null and type != ''"> and type = #{type}</if>
|
||||||
<if test="responsiblePerson != null and responsiblePerson != ''"> and responsible_person = #{responsiblePerson}</if>
|
<if test="responsiblePerson != null and responsiblePerson != ''"> and responsible_person = #{responsiblePerson}</if>
|
||||||
<if test="contactInformation != null and contactInformation != ''"> and contact_information = #{contactInformation}</if>
|
<if test="contactInformation != null and contactInformation != ''"> and contact_information = #{contactInformation}</if>
|
||||||
<if test="parameter != null and parameter != ''"> and parameter = #{parameter}</if>
|
<if test="parameter != null and parameter != ''"> and parameter = #{parameter}</if>
|
||||||
|
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -72,6 +74,7 @@
|
|||||||
<if test="updateTime != null">update_time,</if>
|
<if test="updateTime != null">update_time,</if>
|
||||||
<if test="createBy != null">create_by,</if>
|
<if test="createBy != null">create_by,</if>
|
||||||
<if test="updateBy != null">update_by,</if>
|
<if test="updateBy != null">update_by,</if>
|
||||||
|
<if test="deptId != null">dept_id,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="wellId != null">#{wellId},</if>
|
<if test="wellId != null">#{wellId},</if>
|
||||||
@ -91,6 +94,7 @@
|
|||||||
<if test="updateTime != null">#{updateTime},</if>
|
<if test="updateTime != null">#{updateTime},</if>
|
||||||
<if test="createBy != null">#{createBy},</if>
|
<if test="createBy != null">#{createBy},</if>
|
||||||
<if test="updateBy != null">#{updateBy},</if>
|
<if test="updateBy != null">#{updateBy},</if>
|
||||||
|
<if test="deptId != null">#{deptId},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
@ -114,6 +118,7 @@
|
|||||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||||
<if test="createBy != null">create_by = #{createBy},</if>
|
<if test="createBy != null">create_by = #{createBy},</if>
|
||||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||||
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where intake_id = #{intakeId}
|
where intake_id = #{intakeId}
|
||||||
</update>
|
</update>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user