Commit e92579b3 by 王祖波

extend

parent b508ab60
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
<result property="shareType" column="share_type" jdbcType="INTEGER"/> <result property="shareType" column="share_type" jdbcType="INTEGER"/>
<result property="bizId" column="biz_id" jdbcType="VARCHAR"/> <result property="bizId" column="biz_id" jdbcType="VARCHAR"/>
<result property="bizType" column="biz_type" jdbcType="INTEGER"/> <result property="bizType" column="biz_type" jdbcType="INTEGER"/>
<result property="extend" column="extend" jdbcType="VARCHAR"/>
<result property="deleteFlag" column="delete_flag" jdbcType="INTEGER"/> <result property="deleteFlag" column="delete_flag" jdbcType="INTEGER"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/> <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
...@@ -20,7 +21,7 @@ ...@@ -20,7 +21,7 @@
<sql id="baseSql"> <sql id="baseSql">
id id
, enterprise_id, wx_enterprise_id, clerk_id, staff_id, store_id, share_type, biz_id, biz_type, delete_flag, create_time, update_time , enterprise_id, wx_enterprise_id, clerk_id, staff_id, store_id, share_type, biz_id, biz_type, extend,delete_flag, create_time, update_time
</sql> </sql>
<!--查询单个--> <!--查询单个-->
<select id="queryById" resultMap="TabHaobanClerkShareLogMap"> <select id="queryById" resultMap="TabHaobanClerkShareLogMap">
...@@ -33,6 +34,7 @@ ...@@ -33,6 +34,7 @@
share_type, share_type,
biz_id, biz_id,
biz_type, biz_type,
extend,
delete_flag, delete_flag,
create_time, create_time,
update_time update_time
...@@ -110,9 +112,9 @@ ...@@ -110,9 +112,9 @@
<!--新增所有列--> <!--新增所有列-->
<insert id="insert" keyProperty="id" useGeneratedKeys="true"> <insert id="insert" keyProperty="id" useGeneratedKeys="true">
insert into tab_haoban_clerk_share_log(id, enterprise_id, wx_enterprise_id, clerk_id, staff_id, store_id, share_type, insert into tab_haoban_clerk_share_log(id, enterprise_id, wx_enterprise_id, clerk_id, staff_id, store_id, share_type,
biz_id, biz_type, biz_id, biz_type,extend,
delete_flag, create_time, update_time) delete_flag, create_time, update_time)
values (#{id}, #{enterpriseId}, #{wxEnterpriseId}, #{clerkId}, #{staffId}, #{storeId}, #{shareType}, #{bizId}, #{bizType}, values (#{id}, #{enterpriseId}, #{wxEnterpriseId}, #{clerkId}, #{staffId}, #{storeId}, #{shareType}, #{bizId}, #{bizType},#{extend},
#{deleteFlag}, #{deleteFlag},
#{createTime}, #{updateTime}) #{createTime}, #{updateTime})
</insert> </insert>
......
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