master:档口会员列表返回数据调整;
parent
d4a5e9aaa0
commit
9a326ca34e
|
|
@ -3,6 +3,7 @@ package com.ruoyi.xkt.dto.storeMember;
|
|||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
|
|
@ -29,5 +30,7 @@ public class StoreMemberPageResDTO {
|
|||
private Date endTime;
|
||||
@ApiModelProperty(value = "会员状态")
|
||||
private Integer memberStatus;
|
||||
@ApiModelProperty(value = "支付金额")
|
||||
private BigDecimal payPrice;
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
s.contact_phone,
|
||||
sm.start_time,
|
||||
sm.end_time,
|
||||
sm.member_status
|
||||
sm.member_status,
|
||||
sm.pay_price
|
||||
FROM
|
||||
store_member sm
|
||||
JOIN store s ON sm.store_id = s.id
|
||||
|
|
|
|||
Loading…
Reference in New Issue