新增项目概况字段
This commit is contained in:
parent
ac6b49c478
commit
0ac0aee62f
|
|
@ -137,6 +137,12 @@ public class TbProjectVo {
|
|||
*/
|
||||
private List<TbCablewaTransVo> tbCablewaTransVoList;
|
||||
|
||||
/**
|
||||
* 工程概况
|
||||
*/
|
||||
private String projectOverview;
|
||||
|
||||
|
||||
private int page = 1;
|
||||
private int limit = 10;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<if test="proStatus != null ">pro_status,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createUserId != null ">create_user_id,</if>
|
||||
<if test="projectOverview != null ">project_overview,</if>
|
||||
is_active
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
|
|
@ -32,6 +33,7 @@
|
|||
<if test="proStatus != null ">#{proStatus},</if>
|
||||
<if test="createTime != null ">#{createTime},</if>
|
||||
<if test="createUserId != null ">#{createUserId},</if>
|
||||
<if test="projectOverview != null ">#{projectOverview},</if>
|
||||
1
|
||||
</trim>
|
||||
</insert>
|
||||
|
|
@ -39,6 +41,7 @@
|
|||
update tb_project set depart_id = #{departId},pro_name = #{proName},voltage_level = #{voltageLevel},
|
||||
line_length = #{lineLength},plan_start_time = #{planStartTime},plan_end_time = #{planEndTime},lon = #{lon},
|
||||
lat = #{lat},address = #{address},pro_status = #{proStatus},update_user_id = #{updateUserId},update_time = now()
|
||||
,project_overview = #{projectOverview}
|
||||
where id = #{id}
|
||||
</update>
|
||||
<delete id="delTbProject">
|
||||
|
|
|
|||
Loading…
Reference in New Issue