You've already forked FrameTour-BE
分账表格优化
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
package com.ycwl.basic.profitsharing.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class ProfitSharingRecordGroupVO {
|
||||
private Long orderId;
|
||||
private Date createTime;
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.ycwl.basic.profitsharing.dto;
|
||||
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class ProfitSharingRecordTableRespVo {
|
||||
private List<String> columns;
|
||||
private List<ProfitSharingTableRecordVO> list;
|
||||
private PageInfo page;
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
package com.ycwl.basic.profitsharing.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class ProfitSharingTableRecordVO {
|
||||
|
||||
@ApiModelProperty(value = "景区ID")
|
||||
private Long scenicId;
|
||||
private String scenicName;
|
||||
|
||||
@ApiModelProperty(value = "订单ID")
|
||||
private Long orderId;
|
||||
|
||||
@ApiModelProperty(value = "订单金额")
|
||||
private BigDecimal orderAmount;
|
||||
|
||||
@ApiModelProperty(value = "创建时间")
|
||||
private Date createTime;
|
||||
|
||||
private Map<String, ProfitSharingRecordRespVO> records;
|
||||
}
|
Reference in New Issue
Block a user