package com.zy.asrs.entity;
|
|
/**
|
* Created by vincent on 2020/6/12
|
*/
|
public class MatCodeCountDto {
|
|
private String matNo;
|
|
private int count;
|
|
public MatCodeCountDto() {
|
}
|
|
public MatCodeCountDto(String matNo, int count) {
|
this.matNo = matNo;
|
this.count = count;
|
}
|
|
public String getMatNo() {
|
return matNo;
|
}
|
|
public void setMatNo(String matNo) {
|
this.matNo = matNo;
|
}
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
}
|