materiel.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 169 行
JAVA
169 行
package com.szmx.tlms.admin.model;
import com.szmx.framework.base.model.VersionObject;
import java.io.Serializable;
/**
* Created by IntelliJ IDEA.
* User: andy
* Date: 2006-7-30
* Time: 9:34:10
* To change this template use File | Settings | File Templates.
*/
public class Materiel extends VersionObject implements Serializable {
private Long id;
private String code;
private String shortName;
private String measureUnit;
private String ch_Name;
private float unitPrice;
private float avgPrice;
private float endStockPrice;
private Long clientID;
private Long storehouseID;
private float highestStocks;
private float lowestStocks;
private float reorderGoods;
private String handlers;
private String createDate;
private ClientInfo clientInfo;
private StorehouseInfo storehouseInfo;
public ClientInfo getClientInfo() {
return clientInfo;
}
public void setClientInfo(ClientInfo clientInfo) {
this.clientInfo = clientInfo;
}
public StorehouseInfo getStorehouseInfo() {
return storehouseInfo;
}
public void setStorehouseInfo(StorehouseInfo storehouseInfo) {
this.storehouseInfo = storehouseInfo;
}
public float getAvgPrice() {
return avgPrice;
}
public void setAvgPrice(float avgPrice) {
this.avgPrice = avgPrice;
}
public String getCh_Name() {
return ch_Name;
}
public void setCh_Name(String ch_Name) {
this.ch_Name = ch_Name;
}
public Long getClientID() {
return clientID;
}
public void setClientID(Long clientID) {
this.clientID = clientID;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public float getEndStockPrice() {
return endStockPrice;
}
public void setEndStockPrice(float endStockPrice) {
this.endStockPrice = endStockPrice;
}
public String getHandlers() {
return handlers;
}
public void setHandlers(String handlers) {
this.handlers = handlers;
}
public float getHighestStocks() {
return highestStocks;
}
public void setHighestStocks(float highestStocks) {
this.highestStocks = highestStocks;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public float getLowestStocks() {
return lowestStocks;
}
public void setLowestStocks(float lowestStocks) {
this.lowestStocks = lowestStocks;
}
public String getMeasureUnit() {
return measureUnit;
}
public void setMeasureUnit(String measureUnit) {
this.measureUnit = measureUnit;
}
public float getReorderGoods() {
return reorderGoods;
}
public void setReorderGoods(float reorderGoods) {
this.reorderGoods = reorderGoods;
}
public String getShortName() {
return shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public Long getStorehouseID() {
return storehouseID;
}
public void setStorehouseID(Long storehouseID) {
this.storehouseID = storehouseID;
}
public float getUnitPrice() {
return unitPrice;
}
public void setUnitPrice(float unitPrice) {
this.unitPrice = unitPrice;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?