| | |
| | | package com.consum.base.pojo; |
| | | |
| | | import com.consum.model.po.LWhGoodsRecord; |
| | | import com.walker.web.param.ParamRequest; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 出库时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate dealTime; |
| | | |
| | | private Long dealTime; |
| | | /** |
| | | * 记录物品信息和规格型号 |
| | | */ |
| | | private List<LWhGoodsRecord> list; |
| | | private List<LWhProcureModelParams> models; |
| | | /** |
| | | * 物品id |
| | | */ |
| | |
| | | this.warehouseId = warehouseId; |
| | | } |
| | | |
| | | public LocalDate getDealTime() { |
| | | public Long getDealTime() { |
| | | return dealTime; |
| | | } |
| | | |
| | | public void setDealTime(LocalDate dealTime) { |
| | | public void setDealTime(Long dealTime) { |
| | | this.dealTime = dealTime; |
| | | } |
| | | |
| | | public List<LWhGoodsRecord> getList() { |
| | | return list; |
| | | public List<LWhProcureModelParams> getModels() { |
| | | return models; |
| | | } |
| | | |
| | | public void setList(List<LWhGoodsRecord> list) { |
| | | this.list = list; |
| | | public void setModels(List<LWhProcureModelParams> models) { |
| | | this.models = models; |
| | | } |
| | | |
| | | public Long getBaseGoodsTemplateId() { |