| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package cn.com.lzt.report.entity;
- public class ProjectPurchaseSum4LeaderEntity {
-
- private String projectName;
- //本月度
- private String period;
- private String goodsName ;
- private String goodsCode;
- private String specType;
- private double quantity;
- private double amount;
- //上个月度
- private String preperiod;
- private double prequantity;
- private double preamount;
- //存货分类名称
- private String classname;
- //根目录存货分类名称
- private String rootclassname;
- public String getGoodsName() {
- return goodsName;
- }
- public void setGoodsName(String goodsName) {
- this.goodsName = goodsName;
- }
- public String getProjectName() {
- return projectName;
- }
- public void setProjectName(String projectName) {
- this.projectName = projectName;
- }
- public double getQuantity() {
- return quantity;
- }
- public void setQuantity(double quantity) {
- this.quantity = quantity;
- }
- public double getAmount() {
- return amount;
- }
- public void setAmount(double amount) {
- this.amount = amount;
- }
- public String getGoodsCode() {
- return goodsCode;
- }
- public void setGoodsCode(String goodsCode) {
- this.goodsCode = goodsCode;
- }
- public String getSpecType() {
- return specType;
- }
- public void setSpecType(String specType) {
- this.specType = specType;
- }
- public String getClassname() {
- return classname;
- }
- public void setClassname(String classname) {
- this.classname = classname;
- }
- public String getRootclassname() {
- return rootclassname;
- }
- public void setRootclassname(String rootclassname) {
- this.rootclassname = rootclassname;
- }
- public String getPeriod() {
- return period;
- }
- public void setPeriod(String period) {
- this.period = period;
- }
- public String getPreperiod() {
- return preperiod;
- }
- public void setPreperiod(String preperiod) {
- this.preperiod = preperiod;
- }
- public double getPrequantity() {
- return prequantity;
- }
- public void setPrequantity(double prequantity) {
- this.prequantity = prequantity;
- }
- public double getPreamount() {
- return preamount;
- }
- public void setPreamount(double preamount) {
- this.preamount = preamount;
- }
-
- }
|