package com.ruoyi.account.bean.vo.financial;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDate;
|
|
/**
|
* 科目账基础分录查询对象(SQL映射使用)。
|
*/
|
@Data
|
public class FinLedgerEntryRecordVo {
|
|
/**
|
* 凭证日期。
|
*/
|
private LocalDate voucherDate;
|
|
/**
|
* 凭证字号。
|
*/
|
private String voucherNo;
|
|
/**
|
* 摘要。
|
*/
|
private String summary;
|
|
/**
|
* 借方金额。
|
*/
|
private BigDecimal debit;
|
|
/**
|
* 贷方金额。
|
*/
|
private BigDecimal credit;
|
|
/**
|
* 行号(排序字段)。
|
*/
|
private Integer rowNo;
|
}
|