| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.mes.ui;
- public class BindMaterialResp {
- private String materialId;
- private String materialTitle;
- private String craft;
- private String batchSn;
- private String lastTimes;
- private String type;
- public String getMaterialId() {
- return materialId;
- }
- public void setMaterialId(String materialId) {
- this.materialId = materialId;
- }
- public String getMaterialTitle() {
- return materialTitle;
- }
- public void setMaterialTitle(String materialTitle) {
- this.materialTitle = materialTitle;
- }
- public String getCraft() {
- return craft;
- }
- public void setCraft(String craft) {
- this.craft = craft;
- }
- public String getBatchSn() {
- return batchSn;
- }
- public void setBatchSn(String batchSn) {
- this.batchSn = batchSn;
- }
- public String getLastTimes() {
- return lastTimes;
- }
- public void setLastTimes(String lastTimes) {
- this.lastTimes = lastTimes;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|