统计:Review修改
parent
6fbb7d6d6d
commit
7aa1ecceeb
@ -0,0 +1,13 @@
|
||||
package cn.iocoder.yudao.module.statistics.controller.admin.pay.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Schema(description = "管理后台 - 支付统计 Response VO")
|
||||
@Data
|
||||
public class PaySummaryRespVO {
|
||||
|
||||
@Schema(description = "充值金额,单位分", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
||||
private Integer rechargePrice;
|
||||
|
||||
}
|
||||
@ -0,0 +1,19 @@
|
||||
package cn.iocoder.yudao.module.statistics.convert.pay;
|
||||
|
||||
import cn.iocoder.yudao.module.statistics.controller.admin.pay.vo.PaySummaryRespVO;
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
|
||||
/**
|
||||
* 支付统计 Convert
|
||||
*
|
||||
* @author owen
|
||||
*/
|
||||
@Mapper
|
||||
public interface PayStatisticsConvert {
|
||||
|
||||
PayStatisticsConvert INSTANCE = Mappers.getMapper(PayStatisticsConvert.class);
|
||||
|
||||
PaySummaryRespVO convert(Integer rechargePrice);
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue