|
@ -8,6 +8,7 @@ |
|
|
<result column="remark" jdbcType="VARCHAR" property="remark" /> |
|
|
<result column="remark" jdbcType="VARCHAR" property="remark" /> |
|
|
<result column="check_status" jdbcType="TINYINT" property="checkStatus" /> |
|
|
<result column="check_status" jdbcType="TINYINT" property="checkStatus" /> |
|
|
<result column="time" jdbcType="BIGINT" property="time" /> |
|
|
<result column="time" jdbcType="BIGINT" property="time" /> |
|
|
|
|
|
<result column="check_duration" jdbcType="BIGINT" property="checkDuration" /> |
|
|
<result column="operator" jdbcType="BIGINT" property="operator" /> |
|
|
<result column="operator" jdbcType="BIGINT" property="operator" /> |
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|
|
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|
|
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|
@ -72,8 +73,8 @@ |
|
|
</where> |
|
|
</where> |
|
|
</sql> |
|
|
</sql> |
|
|
<sql id="Base_Column_List"> |
|
|
<sql id="Base_Column_List"> |
|
|
id, record_check_id, score, remark, check_status, time, operator, created_at, updated_at, |
|
|
id, record_check_id, score, remark, check_status, time, check_duration, operator, |
|
|
rec_status |
|
|
created_at, updated_at, rec_status |
|
|
</sql> |
|
|
</sql> |
|
|
<select id="selectByExample" parameterType="com.ccsens.ptccsens.bean.po.PluDeliverRecordCheckLogExample" resultMap="BaseResultMap"> |
|
|
<select id="selectByExample" parameterType="com.ccsens.ptccsens.bean.po.PluDeliverRecordCheckLogExample" resultMap="BaseResultMap"> |
|
|
select |
|
|
select |
|
@ -108,12 +109,12 @@ |
|
|
<insert id="insert" parameterType="com.ccsens.ptccsens.bean.po.PluDeliverRecordCheckLog"> |
|
|
<insert id="insert" parameterType="com.ccsens.ptccsens.bean.po.PluDeliverRecordCheckLog"> |
|
|
insert into t_plu_deliver_record_check_log (id, record_check_id, score, |
|
|
insert into t_plu_deliver_record_check_log (id, record_check_id, score, |
|
|
remark, check_status, time, |
|
|
remark, check_status, time, |
|
|
operator, created_at, updated_at, |
|
|
check_duration, operator, created_at, |
|
|
rec_status) |
|
|
updated_at, rec_status) |
|
|
values (#{id,jdbcType=BIGINT}, #{recordCheckId,jdbcType=BIGINT}, #{score,jdbcType=DECIMAL}, |
|
|
values (#{id,jdbcType=BIGINT}, #{recordCheckId,jdbcType=BIGINT}, #{score,jdbcType=DECIMAL}, |
|
|
#{remark,jdbcType=VARCHAR}, #{checkStatus,jdbcType=TINYINT}, #{time,jdbcType=BIGINT}, |
|
|
#{remark,jdbcType=VARCHAR}, #{checkStatus,jdbcType=TINYINT}, #{time,jdbcType=BIGINT}, |
|
|
#{operator,jdbcType=BIGINT}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedAt,jdbcType=TIMESTAMP}, |
|
|
#{checkDuration,jdbcType=BIGINT}, #{operator,jdbcType=BIGINT}, #{createdAt,jdbcType=TIMESTAMP}, |
|
|
#{recStatus,jdbcType=TINYINT}) |
|
|
#{updatedAt,jdbcType=TIMESTAMP}, #{recStatus,jdbcType=TINYINT}) |
|
|
</insert> |
|
|
</insert> |
|
|
<insert id="insertSelective" parameterType="com.ccsens.ptccsens.bean.po.PluDeliverRecordCheckLog"> |
|
|
<insert id="insertSelective" parameterType="com.ccsens.ptccsens.bean.po.PluDeliverRecordCheckLog"> |
|
|
insert into t_plu_deliver_record_check_log |
|
|
insert into t_plu_deliver_record_check_log |
|
@ -136,6 +137,9 @@ |
|
|
<if test="time != null"> |
|
|
<if test="time != null"> |
|
|
time, |
|
|
time, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="checkDuration != null"> |
|
|
|
|
|
check_duration, |
|
|
|
|
|
</if> |
|
|
<if test="operator != null"> |
|
|
<if test="operator != null"> |
|
|
operator, |
|
|
operator, |
|
|
</if> |
|
|
</if> |
|
@ -168,6 +172,9 @@ |
|
|
<if test="time != null"> |
|
|
<if test="time != null"> |
|
|
#{time,jdbcType=BIGINT}, |
|
|
#{time,jdbcType=BIGINT}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="checkDuration != null"> |
|
|
|
|
|
#{checkDuration,jdbcType=BIGINT}, |
|
|
|
|
|
</if> |
|
|
<if test="operator != null"> |
|
|
<if test="operator != null"> |
|
|
#{operator,jdbcType=BIGINT}, |
|
|
#{operator,jdbcType=BIGINT}, |
|
|
</if> |
|
|
</if> |
|
@ -209,6 +216,9 @@ |
|
|
<if test="record.time != null"> |
|
|
<if test="record.time != null"> |
|
|
time = #{record.time,jdbcType=BIGINT}, |
|
|
time = #{record.time,jdbcType=BIGINT}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="record.checkDuration != null"> |
|
|
|
|
|
check_duration = #{record.checkDuration,jdbcType=BIGINT}, |
|
|
|
|
|
</if> |
|
|
<if test="record.operator != null"> |
|
|
<if test="record.operator != null"> |
|
|
operator = #{record.operator,jdbcType=BIGINT}, |
|
|
operator = #{record.operator,jdbcType=BIGINT}, |
|
|
</if> |
|
|
</if> |
|
@ -234,6 +244,7 @@ |
|
|
remark = #{record.remark,jdbcType=VARCHAR}, |
|
|
remark = #{record.remark,jdbcType=VARCHAR}, |
|
|
check_status = #{record.checkStatus,jdbcType=TINYINT}, |
|
|
check_status = #{record.checkStatus,jdbcType=TINYINT}, |
|
|
time = #{record.time,jdbcType=BIGINT}, |
|
|
time = #{record.time,jdbcType=BIGINT}, |
|
|
|
|
|
check_duration = #{record.checkDuration,jdbcType=BIGINT}, |
|
|
operator = #{record.operator,jdbcType=BIGINT}, |
|
|
operator = #{record.operator,jdbcType=BIGINT}, |
|
|
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|
|
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|
|
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|
|
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|
@ -260,6 +271,9 @@ |
|
|
<if test="time != null"> |
|
|
<if test="time != null"> |
|
|
time = #{time,jdbcType=BIGINT}, |
|
|
time = #{time,jdbcType=BIGINT}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="checkDuration != null"> |
|
|
|
|
|
check_duration = #{checkDuration,jdbcType=BIGINT}, |
|
|
|
|
|
</if> |
|
|
<if test="operator != null"> |
|
|
<if test="operator != null"> |
|
|
operator = #{operator,jdbcType=BIGINT}, |
|
|
operator = #{operator,jdbcType=BIGINT}, |
|
|
</if> |
|
|
</if> |
|
@ -282,6 +296,7 @@ |
|
|
remark = #{remark,jdbcType=VARCHAR}, |
|
|
remark = #{remark,jdbcType=VARCHAR}, |
|
|
check_status = #{checkStatus,jdbcType=TINYINT}, |
|
|
check_status = #{checkStatus,jdbcType=TINYINT}, |
|
|
time = #{time,jdbcType=BIGINT}, |
|
|
time = #{time,jdbcType=BIGINT}, |
|
|
|
|
|
check_duration = #{checkDuration,jdbcType=BIGINT}, |
|
|
operator = #{operator,jdbcType=BIGINT}, |
|
|
operator = #{operator,jdbcType=BIGINT}, |
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|
|
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|
|
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|
|