|
|
@@ -44,7 +44,7 @@
|
|
|
<result column="create_time" property="createTime"/>
|
|
|
<result column="update_by" property="updateBy"/>
|
|
|
<result column="update_time" property="updateTime"/>
|
|
|
- <result column="save_flag" property="saveFlag"/>
|
|
|
+ <result column="submit_state" property="submitState"/>
|
|
|
<result column="del_flag" property="delFlag"/>
|
|
|
</resultMap>
|
|
|
|
|
|
@@ -89,14 +89,11 @@
|
|
|
create_time,
|
|
|
update_by,
|
|
|
update_time,
|
|
|
- save_flag,
|
|
|
+ submit_state,
|
|
|
del_flag
|
|
|
</sql>
|
|
|
|
|
|
<insert id="insert" parameterType="com.railway.business.catenary.domain.BusJcbFdfxjyq">
|
|
|
- <selectKey keyProperty="id" order="BEFORE" resultType="String">
|
|
|
- select replace(uuid(), '-', '') from dual
|
|
|
- </selectKey>
|
|
|
INSERT INTO bus_jcb_fdfxjyq
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test ='null != fdfxjyqId'>
|
|
|
@@ -216,8 +213,8 @@
|
|
|
<if test ='null != updateTime'>
|
|
|
update_time,
|
|
|
</if>
|
|
|
- <if test ='null != saveFlag'>
|
|
|
- save_flag,
|
|
|
+ <if test ='null != submitState'>
|
|
|
+ submit_state,
|
|
|
</if>
|
|
|
<if test ='null != delFlag'>
|
|
|
del_flag
|
|
|
@@ -341,8 +338,8 @@
|
|
|
<if test ='null != updateTime'>
|
|
|
#{updateTime},
|
|
|
</if>
|
|
|
- <if test ='null != saveFlag'>
|
|
|
- #{saveFlag},
|
|
|
+ <if test ='null != submitState'>
|
|
|
+ #{submitState},
|
|
|
</if>
|
|
|
<if test ='null != delFlag'>
|
|
|
#{delFlag}
|
|
|
@@ -398,7 +395,7 @@
|
|
|
<if test ='null != createTime'>create_time = #{createTime},</if>
|
|
|
<if test ='null != updateBy'>update_by = #{updateBy},</if>
|
|
|
<if test ='null != updateTime'>update_time = #{updateTime},</if>
|
|
|
- <if test ='null != saveFlag'>save_flag = #{saveFlag},</if>
|
|
|
+ <if test ='null != submitState'>submit_state = #{submitState},</if>
|
|
|
<if test ='null != delFlag'>del_flag = #{delFlag}</if>
|
|
|
</set>
|
|
|
WHERE id = #{id}
|
|
|
@@ -536,8 +533,8 @@
|
|
|
<if test="updateTime!=null and updateTime!=''">
|
|
|
and update_time=#{updateTime}
|
|
|
</if>
|
|
|
- <if test="saveFlag!=null and saveFlag!=''">
|
|
|
- and save_flag=#{saveFlag}
|
|
|
+ <if test="submitState!=null and submitState!=''">
|
|
|
+ and submit_state=#{submitState}
|
|
|
</if>
|
|
|
<if test="delFlag!=null and delFlag!=''">
|
|
|
and del_flag=#{delFlag}
|