Browse Source

//..coupon_

release_toaliyun_real
xhxu 2 years ago
parent
commit
ef88ce76d7
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/domain/po/WxCarPayRecord.java
  2. +1
    -1
      mallinkService/src/main/resources/mapper/WxCUserCarMapper.xml
  3. +1
    -1
      mallinkService/src/main/resources/mapper/WxCarPayRecordMapper.xml

+ 2
- 2
mallinkService/src/main/java/com/iformall/domain/po/WxCarPayRecord.java View File

@@ -54,10 +54,10 @@ public class WxCarPayRecord extends TenantEntity {


@TableField(exist = false) @TableField(exist = false)
@io.swagger.annotations.ApiModelProperty(value="开始日期",name="startDate") @io.swagger.annotations.ApiModelProperty(value="开始日期",name="startDate")
private String startDate;
private Date startDate;
@TableField(exist = false) @TableField(exist = false)
@io.swagger.annotations.ApiModelProperty(value="结束日期",name="endDate") @io.swagger.annotations.ApiModelProperty(value="结束日期",name="endDate")
private String endDate;
private Date endDate;
@TableField(exist = false) @TableField(exist = false)
@io.swagger.annotations.ApiModelProperty(value="是否缴费",name="isPay") @io.swagger.annotations.ApiModelProperty(value="是否缴费",name="isPay")
private Integer isPay; private Integer isPay;


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

@@ -79,7 +79,7 @@
</foreach> </foreach>
</if> </if>
<!-- <if test=" null != sortColumns"> order by ${sortColumns} </if>--> <!-- <if test=" null != sortColumns"> order by ${sortColumns} </if>-->
order by wcuc.create_date
order by wcuc.create_date desc
</sql> </sql>


<select id="findList" parameterType="com.iformall.domain.po.WxCUserCar" resultMap="BaseResultMap"> <select id="findList" parameterType="com.iformall.domain.po.WxCUserCar" resultMap="BaseResultMap">


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

@@ -87,7 +87,7 @@
</if> </if>


<if test=" null != sortColumns">order by ${sortColumns}</if> <if test=" null != sortColumns">order by ${sortColumns}</if>
<if test=" null == sortColumns">order by create_date</if>
<if test=" null == sortColumns">order by create_date desc</if>
</sql> </sql>


<select id="findCarPayListByPage" parameterType="com.iformall.domain.po.WxCarPayRecord" resultMap="BaseResultMap"> <select id="findCarPayListByPage" parameterType="com.iformall.domain.po.WxCarPayRecord" resultMap="BaseResultMap">


Loading…
Cancel
Save