| | |
| | | @Data |
| | | public class LocDto { |
| | | |
| | | private Long hostId; |
| | | |
| | | private String locNo; |
| | | |
| | | private String matnr; |
| | |
| | | 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) { |
| | | 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.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() { |