|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | public class LocDto { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long hostId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String locNo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String matnr; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //实际出库量 | 
|---|
|  |  |  | private Double anfme; | 
|---|
|  |  |  | private int owner; | 
|---|
|  |  |  | private int payment; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //所需出库量 | 
|---|
|  |  |  | private Double needQty; | 
|---|
|  |  |  | 
|---|
|  |  |  | public LocDto() { | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public LocDto(String locNo, String matnr, String batch, Double anfme) { | 
|---|
|  |  |  | public LocDto(Long hostId,String locNo, String matnr, String batch, Double anfme,String manu) { | 
|---|
|  |  |  | this.locNo = locNo; | 
|---|
|  |  |  | this.matnr = matnr; | 
|---|
|  |  |  | this.batch = batch; | 
|---|
|  |  |  | this.anfme = anfme; | 
|---|
|  |  |  | this.hostId = hostId; | 
|---|
|  |  |  | this.manu = manu; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public LocDto(String locNo, String matnr, String batch, String orderNo, Double anfme) { | 
|---|
|  |  |  | public LocDto(Long hostId,String locNo, String matnr, String batch, String orderNo, Double anfme,String manu) { | 
|---|
|  |  |  | this.locNo = locNo; | 
|---|
|  |  |  | this.matnr = matnr; | 
|---|
|  |  |  | this.batch = batch; | 
|---|
|  |  |  | this.orderNo = orderNo; | 
|---|
|  |  |  | this.anfme = anfme; | 
|---|
|  |  |  | this.hostId = hostId; | 
|---|
|  |  |  | this.manu = manu; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public LocDto(String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme,int owner ,int payment) { | 
|---|
|  |  |  | public LocDto(Long hostId,String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme,String manu) { | 
|---|
|  |  |  | this.locNo = locNo; | 
|---|
|  |  |  | this.matnr = matnr; | 
|---|
|  |  |  | this.maktx = maktx; | 
|---|
|  |  |  | this.batch = batch; | 
|---|
|  |  |  | this.orderNo = orderNo; | 
|---|
|  |  |  | this.anfme = anfme; | 
|---|
|  |  |  | this.owner = owner; | 
|---|
|  |  |  | this.payment = payment; | 
|---|
|  |  |  | this.hostId = hostId; | 
|---|
|  |  |  | this.manu = manu; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public LocDto(String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme, Double needQty) { | 
|---|
|  |  |  | public LocDto(Long hostId,String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme, Double needQty,String manu) { | 
|---|
|  |  |  | this.locNo = locNo; | 
|---|
|  |  |  | this.matnr = matnr; | 
|---|
|  |  |  | this.maktx = maktx; | 
|---|
|  |  |  | 
|---|
|  |  |  | this.orderNo = orderNo; | 
|---|
|  |  |  | this.anfme = anfme; | 
|---|
|  |  |  | this.needQty = needQty; | 
|---|
|  |  |  | this.hostId = hostId; | 
|---|
|  |  |  | this.manu = manu; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getTitle() { | 
|---|