ghy-all/ghy-payment/src/main/java/com/ghy/payment/domain/FinancialDetail.java

52 lines
1.6 KiB
Java
Raw Normal View History

2022-04-20 17:33:56 +08:00
package com.ghy.payment.domain;
2022-04-24 15:59:15 +08:00
import com.ghy.common.annotation.Excel;
2022-04-20 17:33:56 +08:00
import com.ghy.common.core.domain.BaseEntity;
2022-04-24 15:59:15 +08:00
import lombok.Data;
import java.math.BigDecimal;
2022-04-20 17:33:56 +08:00
/**
* @author clunt
2022-04-24 15:59:15 +08:00
* 财务细单(可能是师傅分佣后的细单关联也可能是分佣账单平台提成账单等类型)
2022-04-20 17:33:56 +08:00
*/
2022-04-24 15:59:15 +08:00
@Data
2022-04-20 17:33:56 +08:00
public class FinancialDetail extends BaseEntity {
2022-04-24 15:59:15 +08:00
private static final long serialVersionUID = 1L;
@Excel(name = "序号", cellType = Excel.ColumnType.NUMERIC)
private Long id;
@Excel(name = "编码")
private String code;
@Excel(name = "子订单序号", cellType = Excel.ColumnType.NUMERIC)
private Long orderMasterId;
@Excel(name = "子订单编码", cellType = Excel.ColumnType.NUMERIC)
private String orderMasterCode;
@Excel(name = "子单总金额", cellType = Excel.ColumnType.STRING)
private BigDecimal totalMoney;
@Excel(name = "优惠金额", cellType = Excel.ColumnType.STRING)
private BigDecimal discountMoney;
@Excel(name = "实付金额", cellType = Excel.ColumnType.STRING)
private BigDecimal payMoney;
@Excel(name = "财务子单类型,师傅转派/多级分销/平台抽成", cellType = Excel.ColumnType.NUMERIC)
private Integer financialDetailType;
@Excel(name = "支付方式,微信/支付宝/线下", cellType = Excel.ColumnType.NUMERIC)
private Integer payType;
@Excel(name = "支付状态, 未付款/已付款", cellType = Excel.ColumnType.NUMERIC)
private Integer payStatus;
@Excel(name = "付款时间", cellType = Excel.ColumnType.STRING)
private String payTime;
2022-04-20 17:33:56 +08:00
}