提交 42a26702 作者: 刘明祎-运维用途

Merge branch 'develop'

流水线 #8529 已通过 于阶段
in 2 分 28 秒
...@@ -35,6 +35,7 @@ public class UserPartnerVO { ...@@ -35,6 +35,7 @@ public class UserPartnerVO {
private Integer status; private Integer status;
private Integer userAccountId; private Integer userAccountId;
@ApiModelProperty(value = "意向")
private String intention;
} }
...@@ -46,6 +46,8 @@ public class UserPartnerDO implements Serializable { ...@@ -46,6 +46,8 @@ public class UserPartnerDO implements Serializable {
@JsonIgnore @JsonIgnore
private Integer userAccountId; private Integer userAccountId;
@ApiModelProperty(value = "意向")
private String intention;
} }
...@@ -82,15 +82,16 @@ ...@@ -82,15 +82,16 @@
id, id,
create_time, create_time,
update_time, update_time,
status status,
intention
from user_partner from user_partner
where id = #{id} where id = #{id}
</select> </select>
<!--新增所有列--> <!--新增所有列-->
<insert id="insertPartner" keyProperty="id" useGeneratedKeys="true"> <insert id="insertPartner" keyProperty="id" useGeneratedKeys="true">
insert into user_partner(user_address, user_name, phone_number, create_time, update_time, status,user_account_id) insert into user_partner(user_address, user_name, phone_number, create_time, update_time, status,user_account_id,intention)
values (#{userAddress}, #{userName}, #{phoneNumber},NOW(), #{updateTime}, #{status},#{userAccountId}) values (#{userAddress}, #{userName}, #{phoneNumber},NOW(), #{updateTime}, #{status},#{userAccountId},#{intention})
</insert> </insert>
<insert id="insertBatch" keyProperty="id" useGeneratedKeys="true"> <insert id="insertBatch" keyProperty="id" useGeneratedKeys="true">
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论