123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- package com.ruoyi.finance.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.annotation.Excel;
- import java.util.Date;
- import java.util.List;
- public class TWareHouseFees {
- /**
- * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
- */
- @Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
- private Long fCorpid;
- /**
- * 结算客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
- */
- @Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
- private Long fToCorpid;
- /**
- * 提单号
- */
- @Excel(name = "提单号")
- private String fMblno;
- /**
- * 收、付,D:收 C 付
- */
- @Excel(name = "收、付,D:收 C 付")
- private String fDc;
- /**
- * 费用名称,存储id 显示名称,t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name
- */
- @Excel(name = "费用名称,存储id 显示名称,t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name")
- private String fFeeid;
- /**
- * 入(出)库日期
- */
- @Excel(name = "入", readConverterExp = "出=")
- private Date fBsdate;
- /**
- * 账单日期(审批流结束后更新)
- */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "账单日期(审批流结束后更新)", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fAccbilldate;
- /**
- * 对账单号
- */
- @Excel(name = "对账单号")
- private String fStatementNo;
- /**
- * 对账单号
- */
- @Excel(name = "对账")
- private String fReconciliation;
- /**
- * 查询时间区间 审核日期
- */
- private List<String> timeExamine;
- public List<String> getTimeExamine() {
- return timeExamine;
- }
- public void setTimeExamine(List<String> timeExamine) {
- this.timeExamine = timeExamine;
- }
- /**
- * 查询时间区间 入(出)库日期
- */
- private List<String> timeInterval;
- public void settimeInterval(List<String> timeInterval) {
- this.timeInterval = timeInterval;
- }
- public List<String> gettimeInterval() {
- return timeInterval;
- }
- public String getfStatementNo() {
- return fStatementNo;
- }
- public void setfStatementNo(String fStatementNo) {
- this.fStatementNo = fStatementNo;
- }
- public Long getfCorpid() {
- return fCorpid;
- }
- public void setfCorpid(Long fCorpid) {
- this.fCorpid = fCorpid;
- }
- public Long getfToCorpid() {
- return fToCorpid;
- }
- public void setfToCorpid(Long fToCorpid) {
- this.fToCorpid = fToCorpid;
- }
- public String getfMblno() {
- return fMblno;
- }
- public void setfMblno(String fMblno) {
- this.fMblno = fMblno;
- }
- public String getfDc() {
- return fDc;
- }
- public void setfDc(String fDc) {
- this.fDc = fDc;
- }
- public String getfFeeid() {
- return fFeeid;
- }
- public void setfFeeid(String fFeeid) {
- this.fFeeid = fFeeid;
- }
- public Date getfBsdate() {
- return fBsdate;
- }
- public void setfBsdate(Date fBsdate) {
- this.fBsdate = fBsdate;
- }
- public Date getfAccbilldate() {
- return fAccbilldate;
- }
- public void setfAccbilldate(Date fAccbilldate) {
- this.fAccbilldate = fAccbilldate;
- }
- public String getfReconciliation() {
- return fReconciliation;
- }
- public void setfReconciliation(String fReconciliation) {
- this.fReconciliation = fReconciliation;
- }
- }
|