This commit is contained in:
parent
2841feb310
commit
1744b2ab03
|
@ -19,6 +19,9 @@ public class CMaterial extends BaseEntity
|
|||
/** id */
|
||||
private Long materialId;
|
||||
|
||||
/** 关联物料类型id */
|
||||
private Long materialTypeId;
|
||||
|
||||
/** 型号 */
|
||||
@Excel(name = "型号")
|
||||
private String materialXingh;
|
||||
|
@ -47,6 +50,15 @@ public class CMaterial extends BaseEntity
|
|||
{
|
||||
return materialId;
|
||||
}
|
||||
|
||||
public Long getMaterialTypeId() {
|
||||
return materialTypeId;
|
||||
}
|
||||
|
||||
public void setMaterialTypeId(Long materialTypeId) {
|
||||
this.materialTypeId = materialTypeId;
|
||||
}
|
||||
|
||||
public void setMaterialXingh(String materialXingh)
|
||||
{
|
||||
this.materialXingh = materialXingh;
|
||||
|
|
Loading…
Reference in New Issue