package com.ruoyi.project.domain.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
public class FundVO {
|
private Long id;
|
private Long infoiD;
|
private String donorno;
|
private String userno;
|
private String username;
|
private String unitname;
|
private String unitno;
|
private String unituserno;
|
private String phone;
|
private String annexbankcard;
|
private String annexregistform;
|
private Double amountrequested;
|
private Double applytype;
|
private String prepaidamount;
|
private Long invoicecount;
|
private Long attachcount;
|
private String managerno;
|
private String managername;
|
private String deptmentno;
|
private String deptmentname;
|
private String opochecker;
|
private String finvicepresident;
|
private String busvicepresident;
|
private String officedirector;
|
private String financedirector;
|
private String financechecher;
|
private String remark;
|
private String recordstatus;
|
private Long fdid;
|
private Long fundid;
|
private String beneficiaryname;
|
private String beneficiaryno;
|
private String fduintname;
|
private String fduintno;
|
private String fduintuserno;
|
private String title;
|
private Long idcardtype;
|
private String idcardno;
|
private String sex;
|
private String familyrelations;
|
private String fdphone;
|
private String depositbank;
|
private String bankcardno;
|
private String branchbankname;
|
private String fdannexbankcard;
|
private String fdannexregistform;
|
private String fdapplytype;
|
private Long itemid;
|
private String itemname;
|
private String itemtype;
|
private Double amount;
|
private Double taxamount;
|
private Double taxedamount;
|
private String fdprepaidamount;
|
private Long fdinvoicecount;
|
private Long fdattachcount;
|
private String fdremark;
|
private String fdrecordstatus;
|
private Long del_flag;
|
private String create_by;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date create_time;
|
private String update_by;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date update_time;
|
private String uploadflag;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date uploadtime;
|
|
private Double quantity;
|
private Double price;
|
private Double totalcost;
|
private Double procurementcost;
|
private Double expertcost;
|
private Double ethicscost;
|
private Double medicalcost;
|
private Double familycost;
|
private Double aftercarecost;
|
private String donorname;
|
|
private Double pretaxcost;
|
private Double taxedcost;
|
|
}
|