forked from dyf/fys-Multi-tenant
fys
This commit is contained in:
@ -0,0 +1,30 @@
|
||||
package com.fuyuanshen.job.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class BillDto {
|
||||
|
||||
/**
|
||||
* 账单ID
|
||||
*/
|
||||
private Long billId;
|
||||
|
||||
/**
|
||||
* 账单渠道
|
||||
*/
|
||||
private String billChannel;
|
||||
|
||||
/**
|
||||
* 账单日期
|
||||
*/
|
||||
private String billDate;
|
||||
|
||||
/**
|
||||
* 账单金额
|
||||
*/
|
||||
private BigDecimal billAmount;
|
||||
|
||||
}
|
Reference in New Issue
Block a user