Commit 7d32fbbd authored by jiaorz's avatar jiaorz

会员类型添加

parent 5880acec
...@@ -3,6 +3,8 @@ package com.github.wxiaoqi.security.admin.vo; ...@@ -3,6 +3,8 @@ package com.github.wxiaoqi.security.admin.vo;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
import javax.persistence.Column;
/** /**
* 用户会员 * 用户会员
...@@ -113,4 +115,6 @@ public class UserMemberVo { ...@@ -113,4 +115,6 @@ public class UserMemberVo {
@ApiModelProperty("会员名") @ApiModelProperty("会员名")
private String memberName; private String memberName;
@Column(name = "member_type")
private Integer memberType;
} }
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
<result property="updTime" column="upd_time"/> <result property="updTime" column="upd_time"/>
<result property="isDel" column="is_del"/> <result property="isDel" column="is_del"/>
<result property="memberName" column="member_name"/> <result property="memberName" column="member_name"/>
<result property="memberType" column="member_type"/>
</resultMap> </resultMap>
<select id="getInfoByUserId" resultMap="baseUserMemberMap"> <select id="getInfoByUserId" resultMap="baseUserMemberMap">
......
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