ExpStorageDept.java
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
/**
* <p>
* 消耗品库房科室
* </p>
*
* @author duyukun
* @since 2020-12-07
*/
@TableName(value = "EXP_STORAGE_DEPT",schema = "EQUIPMENT")
public class ExpStorageDept implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 库房代码
*/
@TableId(value = "STORAGE_CODE", type = IdType.INPUT)
private String storageCode;
/**
* 库房名称
*/
@TableField("STORAGE_NAME")
private String storageName;
/**
* 出库单据前缀
*/
@TableField("DISBURSE_NO_PREFIX")
private String disburseNoPrefix;
@TableField("DISBURSE_NO_AVA")
private Integer disburseNoAva;
/**
* 入库单据前缀
*/
@TableField("PURCHASE_NO_PREFIX")
private String purchaseNoPrefix;
@TableField("PURCHASE_NO_AVA")
private Integer purchaseNoAva;
/**
* 计算机名称
*/
@TableField("PC_NAME")
private String pcName;
/**
* 库房级别
*/
@TableField("STORAGE_LEVEL")
private Integer storageLevel;
/**
* 大类代码
*/
@TableField("SUB_CODE")
private String subCode;
/**
* 大类名称
*/
@TableField("SUB_NAME")
private String subName;
@TableField("AUTO_PRICE_RATIO")
private String autoPriceRatio;
public String getStorageCode() {
return storageCode;
}
public void setStorageCode(String storageCode) {
this.storageCode = storageCode;
}
public String getStorageName() {
return storageName;
}
public void setStorageName(String storageName) {
this.storageName = storageName;
}
public String getDisburseNoPrefix() {
return disburseNoPrefix;
}
public void setDisburseNoPrefix(String disburseNoPrefix) {
this.disburseNoPrefix = disburseNoPrefix;
}
public Integer getDisburseNoAva() {
return disburseNoAva;
}
public void setDisburseNoAva(Integer disburseNoAva) {
this.disburseNoAva = disburseNoAva;
}
public String getPurchaseNoPrefix() {
return purchaseNoPrefix;
}
public void setPurchaseNoPrefix(String purchaseNoPrefix) {
this.purchaseNoPrefix = purchaseNoPrefix;
}
public Integer getPurchaseNoAva() {
return purchaseNoAva;
}
public void setPurchaseNoAva(Integer purchaseNoAva) {
this.purchaseNoAva = purchaseNoAva;
}
public String getPcName() {
return pcName;
}
public void setPcName(String pcName) {
this.pcName = pcName;
}
public Integer getStorageLevel() {
return storageLevel;
}
public void setStorageLevel(Integer storageLevel) {
this.storageLevel = storageLevel;
}
public String getSubCode() {
return subCode;
}
public void setSubCode(String subCode) {
this.subCode = subCode;
}
public String getSubName() {
return subName;
}
public void setSubName(String subName) {
this.subName = subName;
}
public String getAutoPriceRatio() {
return autoPriceRatio;
}
public void setAutoPriceRatio(String autoPriceRatio) {
this.autoPriceRatio = autoPriceRatio;
}
@Override
public String toString() {
return "ExpStorageDept{" +
"storageCode=" + storageCode +
", storageName=" + storageName +
", disburseNoPrefix=" + disburseNoPrefix +
", disburseNoAva=" + disburseNoAva +
", purchaseNoPrefix=" + purchaseNoPrefix +
", purchaseNoAva=" + purchaseNoAva +
", pcName=" + pcName +
", storageLevel=" + storageLevel +
", subCode=" + subCode +
", subName=" + subName +
", autoPriceRatio=" + autoPriceRatio +
"}";
}
}