main
parent
9ece80f4f4
commit
9535d94676
@ -0,0 +1,16 @@
|
||||
package com.nmgs.entity.split;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2024年12月25日 9:20
|
||||
* @description:
|
||||
*/
|
||||
@Data
|
||||
public class ClearItems {
|
||||
private String fileId;
|
||||
private Integer fileType;
|
||||
private Integer count;
|
||||
private Integer amount;
|
||||
}
|
||||
@ -0,0 +1,52 @@
|
||||
package com.nmgs.entity.split;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2024年05月27日 11:41
|
||||
* @description: 306
|
||||
*/
|
||||
@Data
|
||||
@TableName("CT_REFUND_LATERPAY_SUM")
|
||||
public class CtRefundLaterpaySum {
|
||||
@TableField( "CLEARDATE")
|
||||
private Date clearDate;
|
||||
@TableField("PROCESSTIME")
|
||||
private Date processTime;
|
||||
@TableField("RECEIVEAMOUNT")
|
||||
private Integer receiveAmount;
|
||||
@TableField("PAYAMOUNT")
|
||||
private Integer payAmount;
|
||||
@TableField("AMOUNT")
|
||||
private Integer amount;
|
||||
@TableField("REFUNDCOUNT")
|
||||
private Integer refundCount;
|
||||
@TableField("RESTITUTIONCOUNT")
|
||||
private Integer restitutionCount;
|
||||
@TableField("RECEIVEDETAIL")
|
||||
private String receiveDetail;
|
||||
@TableField("PAYDETAIL")
|
||||
private String payDetail;
|
||||
@TableField("BASICFILENAME")
|
||||
private String basicFilename;
|
||||
@TableField("DATEMARK")
|
||||
private Date dateMark;
|
||||
@TableField("ISSPLIT")
|
||||
private Integer isSplit;
|
||||
@TableField("PROVRESTITUTIONCOUNT")
|
||||
private Integer provrestitutionCount;
|
||||
@TableField("PROVRECEIVEAMOUT")
|
||||
private Integer provreceiveAmout;
|
||||
@TableField("PROVREFUNDCOUNT")
|
||||
private Integer provrefundCount;
|
||||
@TableField("PROVPAYAMOUT")
|
||||
private Integer provpayAmout;
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package com.nmgs.entity.split;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2024年06月03日 14:57
|
||||
* @description: 306表CT_REFUND_LATERPAY_SUM中PAYDETAIL字段json
|
||||
*/
|
||||
@Data
|
||||
public class PayDetail {
|
||||
private Long amount;
|
||||
private String clearItems;
|
||||
private String receiverId;
|
||||
private Integer receiverType;
|
||||
private Integer refundCount;
|
||||
private Integer restitutionCount;
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package com.nmgs.entity.split;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2024年06月03日 15:03
|
||||
* @description: 306表CT_REFUND_LATERPAY_SUM中RECEIVEDETAIL字段json
|
||||
*/
|
||||
@Data
|
||||
public class ReceiveDetail {
|
||||
private Long amount;
|
||||
private String clearItems;
|
||||
private String payerId;
|
||||
private Integer payerType;
|
||||
private Integer refundCount;
|
||||
private Integer restitutionCount;
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue