Browse Source

去除无用信息

release_toaliyun_real
masterspirit 7 years ago
parent
commit
b30b63832d
2 changed files with 2 additions and 11 deletions
  1. +1
    -9
      mallinkService/src/main/java/com/simple/domain/po/WxCoupon.java
  2. +1
    -2
      mallinkService/src/main/resources/mapper/WxCouponMapper.xml

+ 1
- 9
mallinkService/src/main/java/com/simple/domain/po/WxCoupon.java View File

@@ -92,9 +92,7 @@ public class WxCoupon implements Serializable {
/*须知**/
@io.swagger.annotations.ApiModelProperty(value="须知",name="detail")
private String detail;
/*业态**/
@io.swagger.annotations.ApiModelProperty(value="业态",name="businesses")
private String businesses;

/*面额**/
@io.swagger.annotations.ApiModelProperty(value="面额",name="price")
private BigDecimal price;
@@ -221,12 +219,6 @@ public class WxCoupon implements Serializable {
public void setDetail(String _detail) {
detail = _detail;
}
public String getBusinesses() {
return businesses;
}
public void setBusinesses(String _businesses) {
businesses = _businesses;
}
public BigDecimal getPrice() {
return price;
}


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

@@ -20,7 +20,6 @@
<result column="valid_end_date" jdbcType="TIMESTAMP" property="validEndDate" />
<result column="valid_days" jdbcType="INTEGER" property="validDays" />
<result column="detail" jdbcType="VARCHAR" property="detail" />
<result column="businesses" jdbcType="VARCHAR" property="businesses" />
<result column="price" jdbcType="DECIMAL" property="price" />
<result column="number" jdbcType="INTEGER" property="number" />
<result column="total" jdbcType="INTEGER" property="total" />
@@ -32,7 +31,7 @@
</resultMap>
<sql id="allColumns">
`id`,`tenant_id`,`merchant_id`,`type`,`cover_img`,`title`,`sub_title`,`sale_price`,`use_price`,`use_limit_quantity`,`target_ad`,`send_type`,`send_start_date`,`send_end_date`,`valid_start_date`,`valid_end_date`,`valid_days`,`detail`,`businesses`,`price`,`number`,`total`,`remark`,`status`,`create_date`,`update_date`,`business`
`id`,`tenant_id`,`merchant_id`,`type`,`cover_img`,`title`,`sub_title`,`sale_price`,`use_price`,`use_limit_quantity`,`target_ad`,`send_type`,`send_start_date`,`send_end_date`,`valid_start_date`,`valid_end_date`,`valid_days`,`detail`,`price`,`number`,`total`,`remark`,`status`,`create_date`,`update_date`,`business`
</sql>

<sql id="dynamicWhereConditions">


Loading…
Cancel
Save