123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- package com.ruoyi.reportManagement.domain;
- import com.ruoyi.common.annotation.Excel;
- import java.math.BigDecimal;
- import java.util.List;
- public class SingleAnalysisExcel {
- /** 货主Id */
- private Long fCorpid;
- /** 货主 */
- private String corpName;
- /** 提单号 */
- private String fMblno;
- /** 序号 */
- private Integer lineNo;
- /** 品名 */
- @Excel(name = "品名")
- private String goodsName;
- /** 货物属性 */
- @Excel(name = "货物属性")
- private String fBusinessTypes;
- /** 属性详情 */
- @Excel(name = "属性详情")
- private String fMarks;
- /** 库区 */
- @Excel(name = "库区")
- private String fWName;
- /** 作业类型 */
- @Excel(name = "作业类型")
- private String fBusinessType;
- /** 箱型箱量 */
- @Excel(name = "箱型箱量")
- private String fCntval;
- @Excel(name = "入库日期")
- private String inBsdate;
- /** 入库件数 */
- @Excel(name = "入库件数")
- private Integer inQty;
- /** 入库毛重 */
- @Excel(name = "入库毛重")
- private BigDecimal inGrossweight;
- @Excel(name = "出库日期")
- private String outBsdate;
- /** 入库件数 */
- @Excel(name = "出库件数")
- private Integer outQty;
- /** 入库毛重 */
- @Excel(name = "出库毛重")
- private BigDecimal outGrossweight;
- /** 结余件数 */
- @Excel(name = "结余件数")
- private Integer fQtyblc;
- /** 结余毛重 */
- @Excel(name = "结余毛重")
- private BigDecimal fGrossweightblc;
- /** 业务类型 */
- @Excel(name = "业务类型")
- private String fBilltype;
- /** 车号 */
- @Excel(name = "车号")
- private String fTruckno;
- /** 堆存天数 */
- @Excel(name = "堆存天数")
- private Integer fBillingDays;
- /** 出库堆存费 */
- @Excel(name = "出库堆存费")
- private BigDecimal fAmt;
- /** 备注 */
- @Excel(name = "备注")
- private String remark;
- /** 日期区间 */
- private List<String> bsdateList;
- public String getfBusinessTypes() {
- return fBusinessTypes;
- }
- public void setfBusinessTypes(String fBusinessTypes) {
- this.fBusinessTypes = fBusinessTypes;
- }
- public String getfMarks() {
- return fMarks;
- }
- public void setfMarks(String fMarks) {
- this.fMarks = fMarks;
- }
- public String getfWName() {
- return fWName;
- }
- public void setfWName(String fWName) {
- this.fWName = fWName;
- }
- public Long getfCorpid() {
- return fCorpid;
- }
- public void setfCorpid(Long fCorpid) {
- this.fCorpid = fCorpid;
- }
- public String getCorpName() {
- return corpName;
- }
- public void setCorpName(String corpName) {
- this.corpName = corpName;
- }
- public String getfMblno() {
- return fMblno;
- }
- public void setfMblno(String fMblno) {
- this.fMblno = fMblno;
- }
- public String getGoodsName() {
- return goodsName;
- }
- public void setGoodsName(String goodsName) {
- this.goodsName = goodsName;
- }
- public Integer getLineNo() {
- return lineNo;
- }
- public void setLineNo(Integer lineNo) {
- this.lineNo = lineNo;
- }
- public String getfBusinessType() {
- return fBusinessType;
- }
- public void setfBusinessType(String fBusinessType) {
- this.fBusinessType = fBusinessType;
- }
- public String getfCntval() {
- return fCntval;
- }
- public void setfCntval(String fCntval) {
- this.fCntval = fCntval;
- }
- public String getInBsdate() {
- return inBsdate;
- }
- public void setInBsdate(String inBsdate) {
- this.inBsdate = inBsdate;
- }
- public Integer getInQty() {
- return inQty;
- }
- public void setInQty(Integer inQty) {
- this.inQty = inQty;
- }
- public BigDecimal getInGrossweight() {
- return inGrossweight;
- }
- public void setInGrossweight(BigDecimal inGrossweight) {
- this.inGrossweight = inGrossweight;
- }
- public String getOutBsdate() {
- return outBsdate;
- }
- public void setOutBsdate(String outBsdate) {
- this.outBsdate = outBsdate;
- }
- public Integer getOutQty() {
- return outQty;
- }
- public void setOutQty(Integer outQty) {
- this.outQty = outQty;
- }
- public BigDecimal getOutGrossweight() {
- return outGrossweight;
- }
- public void setOutGrossweight(BigDecimal outGrossweight) {
- this.outGrossweight = outGrossweight;
- }
- public Integer getfQtyblc() {
- return fQtyblc;
- }
- public void setfQtyblc(Integer fQtyblc) {
- this.fQtyblc = fQtyblc;
- }
- public BigDecimal getfGrossweightblc() {
- return fGrossweightblc;
- }
- public void setfGrossweightblc(BigDecimal fGrossweightblc) {
- this.fGrossweightblc = fGrossweightblc;
- }
- public String getfBilltype() {
- return fBilltype;
- }
- public void setfBilltype(String fBilltype) {
- this.fBilltype = fBilltype;
- }
- public String getfTruckno() {
- return fTruckno;
- }
- public void setfTruckno(String fTruckno) {
- this.fTruckno = fTruckno;
- }
- public Integer getfBillingDays() {
- return fBillingDays;
- }
- public void setfBillingDays(Integer fBillingDays) {
- this.fBillingDays = fBillingDays;
- }
- public BigDecimal getfAmt() {
- return fAmt;
- }
- public void setfAmt(BigDecimal fAmt) {
- this.fAmt = fAmt;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public List<String> getBsdateList() {
- return bsdateList;
- }
- public void setBsdateList(List<String> bsdateList) {
- this.bsdateList = bsdateList;
- }
- }
|