| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- package cn.com.lzt.report.dto;
- import java.util.Date;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import cn.com.lzt.tools.DecimalUtils;
- public class SupplierSumRptDto {
-
- private String goodsId;
- @Excel(name="货品名称", width=15)
- private String pname;
-
- private Date orderDate;
-
- @Excel(name="供应商名称", width=30)
- private String supplierName;
- @Excel(name="规格", width=15)
- private String specType;
- @Excel(name="计量单位", width=15,dicCode = "metering_calcu_unit")
- private String measureUnit;
-
- private String warehouseName;
- @Excel(name="数量", width=15)
- private String quantitystr;
- @Excel(name="金额", width=15)
- private String moneystr;
- @Excel(name="未到货数量", width=15)
- private String quantityNotArrivedstr;
-
- private Double quantity;
-
- private Double money;
-
- private Double quantityNotArrived;
- private String supplierid;
-
- public String getGoodsId() {
- return goodsId;
- }
- public void setGoodsId(String goodsId) {
- this.goodsId = goodsId;
- }
- public Date getOrderDate() {
- return orderDate;
- }
- public void setOrderDate(Date orderDate) {
- this.orderDate = orderDate;
- }
- public String getPname() {
- return pname;
- }
- public void setPname(String pname) {
- this.pname = pname;
- }
- public String getSupplierName() {
- return supplierName;
- }
- public void setSupplierName(String supplierName) {
- this.supplierName = supplierName;
- }
- public String getSpecType() {
- return specType;
- }
- public void setSpecType(String specType) {
- this.specType = specType;
- }
- public String getMeasureUnit() {
- return measureUnit;
- }
- public void setMeasureUnit(String measureUnit) {
- this.measureUnit = measureUnit;
- }
- public String getWarehouseName() {
- return warehouseName;
- }
- public void setWarehouseName(String warehouseName) {
- this.warehouseName = warehouseName;
- }
- public Double getQuantity() {
- return quantity;
- }
- public void setQuantity(Double quantity) {
- this.quantity = quantity;
- }
- public Double getMoney() {
- return money;
- }
- public void setMoney(Double money) {
- this.money = money;
- }
- public Double getQuantityNotArrived() {
- return quantityNotArrived;
- }
- public void setQuantityNotArrived(Double quantityNotArrived) {
- this.quantityNotArrived = quantityNotArrived;
- }
- public String getQuantitystr() {
- return DecimalUtils.formatToStr(quantity);
- }
- public void setQuantitystr(String quantitystr) {
- this.quantitystr = quantitystr;
- }
- public String getMoneystr() {
- return DecimalUtils.formatToStr(money);
- }
- public void setMoneystr(String moneystr) {
- this.moneystr = moneystr;
- }
- public String getQuantityNotArrivedstr() {
- return DecimalUtils.formatToStr(quantityNotArrived);
- }
- public void setQuantityNotArrivedstr(String quantityNotArrivedstr) {
- this.quantityNotArrivedstr = quantityNotArrivedstr;
- }
- /**
- * @return the supplierid
- */
- public String getSupplierid() {
- return supplierid;
- }
- /**
- * @param supplierid the supplierid to set
- */
- public void setSupplierid(String supplierid) {
- this.supplierid = supplierid;
- }
- }
|