Commit ab1973d3 by guojuxing

Merge remote-tracking branch 'origin/developer' into developer

parents 52f9f3eb a763022d
......@@ -9,7 +9,7 @@ public class BillingSmsRecordDTO {
/**
*
*/
private Integer smsRecordId;
private Long smsRecordId;
/**
*
......@@ -111,11 +111,11 @@ public class BillingSmsRecordDTO {
*/
private String storeGroupName;
public Integer getSmsRecordId() {
public Long getSmsRecordId() {
return smsRecordId;
}
public void setSmsRecordId(Integer smsRecordId) {
public void setSmsRecordId(Long smsRecordId) {
this.smsRecordId = smsRecordId;
}
......
......@@ -296,7 +296,7 @@
and product_name like concat('%', #{productName}, '%')
</if>
</where>
order by create_time desc
order by deduction_time desc
</select>
<select id="countAccountBalanceRecord" resultType="int">
select
......
......@@ -482,7 +482,7 @@
and sms_type = #{smsType}
</if>
</where>
order by create_time desc
order by deduction_time desc
</select>
<select id="countInternationalSmsRecord" resultType="int">
select
......
......@@ -301,7 +301,7 @@
and product_name like concat('%', #{productName}, '%' )
</if>
</where>
order by create_time desc
order by deduction_time desc
</select>
<select id="countSmsPackageRecord" resultType="int">
select
......
......@@ -492,7 +492,7 @@
and sms_type = #{smsType}
</if>
</where>
order by create_time desc
order by deduction_time desc
</select>
<select id="countSmsRecord" resultType="int">
select
......
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