Commit 34a4bd0972d37158907a395d791bff1706c134ad

Authored by yiming
1 parent 83b1ec28

路单审计报表

src/main/java/com/bsth/entity/calc/CalcWaybillAudit.java 0 → 100644
  1 +package com.bsth.entity.calc;
  2 +
  3 +import javax.persistence.Entity;
  4 +import javax.persistence.GeneratedValue;
  5 +import javax.persistence.Id;
  6 +import javax.persistence.Table;
  7 +
  8 +@Entity
  9 +@Table(name = "calc_waybill_audit")
  10 +public class CalcWaybillAudit {
  11 +
  12 + @Id
  13 + @GeneratedValue
  14 + private Long id;
  15 +
  16 + private String rq;
  17 +
  18 + private String lineCode;
  19 +
  20 + private String lineName;
  21 +
  22 + private String nbbm;
  23 +
  24 + private Double yylc;
  25 +
  26 + private Double inlc;
  27 +
  28 + private Double outlc;
  29 +
  30 + private Double kslc;
  31 +
  32 + private Double zkslc;
  33 +
  34 + private Double zlc;
  35 +
  36 + private String fgsbm;
  37 +
  38 + private String fgsName;
  39 +
  40 + private String gsbm;
  41 +
  42 + private String gsName;
  43 +
  44 + public Long getId() {
  45 + return id;
  46 + }
  47 +
  48 + public void setId(Long id) {
  49 + this.id = id;
  50 + }
  51 +
  52 + public String getLineCode() {
  53 + return lineCode;
  54 + }
  55 +
  56 + public void setLineCode(String lineCode) {
  57 + this.lineCode = lineCode;
  58 + }
  59 +
  60 + public String getLineName() {
  61 + return lineName;
  62 + }
  63 +
  64 + public void setLineName(String lineName) {
  65 + this.lineName = lineName;
  66 + }
  67 +
  68 + public String getNbbm() {
  69 + return nbbm;
  70 + }
  71 +
  72 + public void setNbbm(String nbbm) {
  73 + this.nbbm = nbbm;
  74 + }
  75 +
  76 + public Double getYylc() {
  77 + return yylc;
  78 + }
  79 +
  80 + public void setYylc(Double yylc) {
  81 + this.yylc = yylc;
  82 + }
  83 +
  84 + public Double getInlc() {
  85 + return inlc;
  86 + }
  87 +
  88 + public void setInlc(Double inlc) {
  89 + this.inlc = inlc;
  90 + }
  91 +
  92 + public Double getOutlc() {
  93 + return outlc;
  94 + }
  95 +
  96 + public void setOutlc(Double outlc) {
  97 + this.outlc = outlc;
  98 + }
  99 +
  100 + public Double getKslc() {
  101 + return kslc;
  102 + }
  103 +
  104 + public void setKslc(Double kslc) {
  105 + this.kslc = kslc;
  106 + }
  107 +
  108 + public Double getZkslc() {
  109 + return zkslc;
  110 + }
  111 +
  112 + public void setZkslc(Double zkslc) {
  113 + this.zkslc = zkslc;
  114 + }
  115 +
  116 + public Double getZlc() {
  117 + return zlc;
  118 + }
  119 +
  120 + public void setZlc(Double zlc) {
  121 + this.zlc = zlc;
  122 + }
  123 +
  124 + public String getFgsbm() {
  125 + return fgsbm;
  126 + }
  127 +
  128 + public void setFgsbm(String fgsbm) {
  129 + this.fgsbm = fgsbm;
  130 + }
  131 +
  132 + public String getFgsName() {
  133 + return fgsName;
  134 + }
  135 +
  136 + public void setFgsName(String fgsName) {
  137 + this.fgsName = fgsName;
  138 + }
  139 +
  140 + public String getGsbm() {
  141 + return gsbm;
  142 + }
  143 +
  144 + public void setGsbm(String gsbm) {
  145 + this.gsbm = gsbm;
  146 + }
  147 +
  148 + public String getGsName() {
  149 + return gsName;
  150 + }
  151 +
  152 + public void setGsName(String gsName) {
  153 + this.gsName = gsName;
  154 + }
  155 +
  156 + public String getRq() {
  157 + return rq;
  158 + }
  159 +
  160 + public void setRq(String rq) {
  161 + this.rq = rq;
  162 + }
  163 +}