| | |
| | | public MatCodeCountDto() { |
| | | } |
| | | |
| | | public MatCodeCountDto(String matNo, Double count, String supplier) { |
| | | public MatCodeCountDto(String matNo, Double count) { |
| | | this.matNo = matNo; |
| | | this.count = count; |
| | | this.supplier = supplier; |
| | | } |
| | | |
| | | public MatCodeCountDto(String matNo, String supplier, Double count) { |
| | | this.matNo = matNo; |
| | | this.supplier = supplier; |
| | | this.count = count; |
| | | } |
| | | |
| | | public MatCodeCountDto(String billNo, Integer seqNo, String matNo, String supplier, Double count) { |
| | | this.matNo = matNo; |
| | | this.count = count; |
| | | this.billNo = billNo; |
| | | this.supplier = supplier; |
| | | this.seqNo = seqNo; |
| | | } |
| | | |
| | | public String getBillNo() { return billNo; } |
| | | |