Browse Source

//OfflineActivity

release_toaliyun_real
xiaohu 1 year ago
parent
commit
cd1dfe041b
2 changed files with 5 additions and 1 deletions
  1. +3
    -0
      mallinkService/src/main/java/com/iformall/domain/po/WxOfflineActivityItem.java
  2. +2
    -1
      mallinkService/src/main/resources/mapper/WxOfflineActivityItemMapper.xml

+ 3
- 0
mallinkService/src/main/java/com/iformall/domain/po/WxOfflineActivityItem.java View File

@@ -56,6 +56,9 @@ public class WxOfflineActivityItem extends TenantEntity {
@TableField(value = "awards_item_price")
private Integer awardsItemPrice;

@TableField(value = "awards_item_limit")
private Integer awardsItemLimit;

/**
* 奖项总数量
*/


+ 2
- 1
mallinkService/src/main/resources/mapper/WxOfflineActivityItemMapper.xml View File

@@ -13,6 +13,7 @@
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="limitMoney" column="limit_money" jdbcType="INTEGER"/>
<result property="awardsItemPrice" column="awards_item_price" jdbcType="INTEGER"/>
<result property="awardsItemLimit" column="awards_item_limit" jdbcType="INTEGER"/>
<result property="awardsItemCount" column="awards_item_count" jdbcType="INTEGER"/>
<result property="awardsItemRule" column="awards_item_rule" jdbcType="INTEGER"/>
<result property="createDate" column="create_date" jdbcType="TIMESTAMP"/>
@@ -22,7 +23,7 @@
<sql id="allColumns">
id,tenant_id,parent_tenant_id,
activity_id,`type`,`name`,
limit_money,awards_item_price,awards_item_count,
limit_money,awards_item_price,awards_item_limit,awards_item_count,
awards_item_rule,create_date,update_date
</sql>



Loading…
Cancel
Save