|
@@ -0,0 +1,172 @@
|
|
|
+package com.ruoyi.anpin;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.ruoyi.common.annotation.Excel;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 采购申请统计
|
|
|
+ */
|
|
|
+public class PurchaseRequestExcel {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+ //供应商id
|
|
|
+ private Long fCorpid;
|
|
|
+ //供应商名称
|
|
|
+ @Excel(name = "供应商")
|
|
|
+ private String fCorpidName;
|
|
|
+ @Excel(name = "出库日期",dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private Date fBsdate;
|
|
|
+ //物资类别
|
|
|
+ private Long ffeetype;
|
|
|
+ //物资类别中文名
|
|
|
+ @Excel(name = "物资类别")
|
|
|
+ private String ffeetypeName;
|
|
|
+ //物资名
|
|
|
+ @Excel(name = "物资")
|
|
|
+ private String fname;
|
|
|
+ //规格
|
|
|
+ @Excel(name = "规格")
|
|
|
+ private String fcurrency;
|
|
|
+ //数量
|
|
|
+ @Excel(name = "数量")
|
|
|
+ private BigDecimal fqty;
|
|
|
+ //计价单位id
|
|
|
+ private Long ffeeunitid;
|
|
|
+ //计价单位中文名
|
|
|
+ @Excel(name = "计价单位")
|
|
|
+ private String ffeeunitidName;
|
|
|
+ //单价
|
|
|
+ @Excel(name = "单价")
|
|
|
+ private BigDecimal price;
|
|
|
+ //金额
|
|
|
+ @Excel(name = "金额")
|
|
|
+ private BigDecimal famount;
|
|
|
+ @Excel(name = "开票公司")
|
|
|
+ private String fsbuName;
|
|
|
+
|
|
|
+ public Long getfCorpid() {
|
|
|
+ return fCorpid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfCorpid(Long fCorpid) {
|
|
|
+ this.fCorpid = fCorpid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getfCorpidName() {
|
|
|
+ return fCorpidName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfCorpidName(String fCorpidName) {
|
|
|
+ this.fCorpidName = fCorpidName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getfBsdate() {
|
|
|
+ return fBsdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfBsdate(Date fBsdate) {
|
|
|
+ this.fBsdate = fBsdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFfeetype() {
|
|
|
+ return ffeetype;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfeetype(Long ffeetype) {
|
|
|
+ this.ffeetype = ffeetype;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFfeetypeName() {
|
|
|
+ return ffeetypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfeetypeName(String ffeetypeName) {
|
|
|
+ this.ffeetypeName = ffeetypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFname() {
|
|
|
+ return fname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFname(String fname) {
|
|
|
+ this.fname = fname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFcurrency() {
|
|
|
+ return fcurrency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFcurrency(String fcurrency) {
|
|
|
+ this.fcurrency = fcurrency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFqty() {
|
|
|
+ return fqty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFqty(BigDecimal fqty) {
|
|
|
+ this.fqty = fqty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFfeeunitid() {
|
|
|
+ return ffeeunitid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfeeunitid(Long ffeeunitid) {
|
|
|
+ this.ffeeunitid = ffeeunitid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFfeeunitidName() {
|
|
|
+ return ffeeunitidName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfeeunitidName(String ffeeunitidName) {
|
|
|
+ this.ffeeunitidName = ffeeunitidName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getPrice() {
|
|
|
+ return price;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrice(BigDecimal price) {
|
|
|
+ this.price = price;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFamount() {
|
|
|
+ return famount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFamount(BigDecimal famount) {
|
|
|
+ this.famount = famount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFsbuName() {
|
|
|
+ return fsbuName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFsbuName(String fsbuName) {
|
|
|
+ this.fsbuName = fsbuName;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "PurchaseRequestExcel{" +
|
|
|
+ "fCorpid=" + fCorpid +
|
|
|
+ ", fCorpidName='" + fCorpidName + '\'' +
|
|
|
+ ", fBsdate=" + fBsdate +
|
|
|
+ ", ffeetype=" + ffeetype +
|
|
|
+ ", ffeetypeName='" + ffeetypeName + '\'' +
|
|
|
+ ", fname='" + fname + '\'' +
|
|
|
+ ", fcurrency='" + fcurrency + '\'' +
|
|
|
+ ", fqty=" + fqty +
|
|
|
+ ", ffeeunitid=" + ffeeunitid +
|
|
|
+ ", ffeeunitidName='" + ffeeunitidName + '\'' +
|
|
|
+ ", price=" + price +
|
|
|
+ ", famount=" + famount +
|
|
|
+ ", fsbuName='" + fsbuName + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
+}
|