Files
fuintback/fuint-application/src/main/java/com/fuint/common/dto/SettlementDto.java
2026-01-27 14:03:02 +08:00

59 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.fuint.common.dto;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import com.fuint.framework.pagination.PaginationResponse;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 结算实体类
*
* Created by FSQ
* CopyRight https://www.fuint.cn
*/
@Data
public class SettlementDto implements Serializable {
@ApiModelProperty("自增ID")
private Integer id;
@ApiModelProperty("结算单号")
private String settlementNo;
@ApiModelProperty("商户ID")
private Integer merchantId;
@ApiModelProperty("店铺ID")
private Integer storeId;
@ApiModelProperty("订单总金额")
private BigDecimal totalOrderAmount;
@ApiModelProperty("结算金额")
private BigDecimal amount;
@ApiModelProperty("结算订单")
private PaginationResponse<SettlementOrderDto> orderList;
@ApiModelProperty("创建时间")
private Date createTime;
@ApiModelProperty("更新时间")
private Date updateTime;
@ApiModelProperty("备注说明")
private String description;
@ApiModelProperty("最后操作人")
private String operator;
@ApiModelProperty("支付状态A待支付B已支付")
private String payStatus;
@ApiModelProperty("状态A正常D删除")
private String status;
}