Commit df73b011 authored by 李灿灿's avatar 李灿灿

Merge branch 'feature-licancan' into 'develop'

商险操作记录增加remark字段

See merge request fangxinjiang/yifu!170
parents 88662bda 0419d243
......@@ -36,6 +36,12 @@ public class TInsuranceOperate implements Serializable {
@Schema(description = "操作描述")
private String operateDesc;
/**
* 备注(审核意见)
*/
@Schema(description = "备注(审核意见)")
private String remark;
/**
* 创建者
*/
......
......@@ -8,13 +8,14 @@
<id property="id" column="ID" jdbcType="VARCHAR"/>
<result property="insuranceDetailId" column="INSURANCE_DETAIL_ID" jdbcType="VARCHAR"/>
<result property="operateDesc" column="OPERATE_DESC" jdbcType="VARCHAR"/>
<result property="remark" column="REMARK" jdbcType="VARCHAR"/>
<result property="createBy" column="CREATE_BY" jdbcType="VARCHAR"/>
<result property="createName" column="CREATE_NAME" jdbcType="VARCHAR"/>
<result property="createTime" column="CREATE_TIME" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
ID,INSURANCE_DETAIL_ID,OPERATE_DESC,
ID,INSURANCE_DETAIL_ID,OPERATE_DESC,REMARK,
CREATE_BY,CREATE_NAME,CREATE_TIME
</sql>
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment