提交 78cbe1dc 编写于 作者: M megagao

删除了文件

上级 e906c832
......@@ -5,7 +5,9 @@ import java.util.Date;
public class MaterialConsume {
private String consumeId;
private String materialId;
private Work work;
private Material material;
private Integer consumeAmount;
......@@ -25,12 +27,20 @@ public class MaterialConsume {
this.consumeId = consumeId == null ? null : consumeId.trim();
}
public String getMaterialId() {
return materialId;
public Work getWork() {
return work;
}
public void setWork(Work work) {
this.work = work;
}
public Material getMaterial() {
return material;
}
public void setMaterialId(String materialId) {
this.materialId = materialId == null ? null : materialId.trim();
public void setMaterial(Material material) {
this.material = material;
}
public Integer getConsumeAmount() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册