he2802 3 жил өмнө
parent
commit
0e1c8694b2

+ 5 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/base/domain/UserProfile.java

@@ -1,6 +1,7 @@
 package com.zhongzheng.modules.base.domain;
 package com.zhongzheng.modules.base.domain;
 
 
 import com.baomidou.mybatisplus.annotation.*;
 import com.baomidou.mybatisplus.annotation.*;
+import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 import lombok.Data;
 import lombok.NoArgsConstructor;
 import lombok.NoArgsConstructor;
 import lombok.experimental.Accessors;
 import lombok.experimental.Accessors;
@@ -59,4 +60,8 @@ private static final long serialVersionUID=1L;
 
 
     /**  1 为资料审核  2为盖章审核 */
     /**  1 为资料审核  2为盖章审核 */
     private Integer typeStatus;
     private Integer typeStatus;
+
+    /** 订单商品ID */
+    @ApiModelProperty("订单商品ID")
+    private Long orderGoodsId;
 }
 }

+ 2 - 0
zhongzheng-system/src/main/resources/mapper/modules/base/UserProfileMapper.xml

@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="changeStatus" column="change_status"/>
         <result property="changeStatus" column="change_status"/>
         <result property="text" column="text"/>
         <result property="text" column="text"/>
         <result property="auditTime" column="audit_time"/>
         <result property="auditTime" column="audit_time"/>
+        <result property="orderGoodsId" column="order_goods_id"/>
     </resultMap>
     </resultMap>
 
 
     <resultMap type="com.zhongzheng.modules.base.vo.UserProfileVo" id="UserProfileVo">
     <resultMap type="com.zhongzheng.modules.base.vo.UserProfileVo" id="UserProfileVo">
@@ -43,6 +44,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="businessName" column="business_name"/>
         <result property="businessName" column="business_name"/>
         <result property="text" column="text"/>
         <result property="text" column="text"/>
         <result property="auditTime" column="audit_time"/>
         <result property="auditTime" column="audit_time"/>
+        <result property="orderGoodsId" column="order_goods_id"/>
     </resultMap>
     </resultMap>
 
 
     <select id="selectUserProfile" parameterType="com.zhongzheng.modules.base.bo.UserProfileQueryBo" resultMap="UserProfileVo">
     <select id="selectUserProfile" parameterType="com.zhongzheng.modules.base.bo.UserProfileQueryBo" resultMap="UserProfileVo">