📄 oa_materials_informationitem.java
字号:
package com.vere.oa.materials.item; import java.io.*; public class Oa_materials_informationItem implements Serializable { private String id;// private String category;//用品类别 private String name;//名称 private String unit;//单位 private String standard;//规格 private String price;//价格 private String quantity;//数量 private String memo;//备注 private Oa_materials_categoryItem materials_categoryItem; public Oa_materials_informationItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 用品类别 */ public String getCategory() { if(this.category==null) this.category=""; return this.category; } /** * @see 用品类别 */ public void setCategory(String category) { this.category=category; } /** * @see 名称 */ public String getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 名称 */ public void setName(String name) { this.name=name; } /** * @see 单位 */ public String getUnit() { if(this.unit==null) this.unit=""; return this.unit; } /** * @see 单位 */ public void setUnit(String unit) { this.unit=unit; } /** * @see 规格 */ public String getStandard() { if(this.standard==null) this.standard=""; return this.standard; } /** * @see 规格 */ public void setStandard(String standard) { this.standard=standard; } /** * @see 价格 */ public String getPrice() { if(this.price==null) this.price=""; return this.price; } /** * @see 价格 */ public void setPrice(String price) { this.price=price; } /** * @see 数量 */ public String getQuantity() { if(this.quantity==null) this.quantity=""; return this.quantity; } /** * @see 数量 */ public void setQuantity(String quantity) { this.quantity=quantity; } /** * @see 备注 */ public String getMemo() { if(this.memo==null) this.memo=""; return this.memo; } /** * @see 备注 */ public void setMemo(String memo) { this.memo=memo; } /** * @see 用品类别 */ public Oa_materials_categoryItem getOa_materials_categoryItem() { return this.materials_categoryItem; } /** * @see 用品类别 */ public void setOa_materials_categoryItem(Oa_materials_categoryItem materials_categoryItem) { this.materials_categoryItem=materials_categoryItem; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -