📄 invio.java
字号:
package com.inv.vo;
/**
* @hibernate.class
* table="T_InvIO"
*/
public class InvIO{
private Long invIOUID;
private Bind bind;
private Item item;
private Integer qty;
private Boolean ioType;
public InvIO() {
}
/**
* @hibernate.id
* generator-class="hilo"
* unsaved-value = null
* column = "InvIOUID"
* @return Long
*/
public Long getInvIOUID() {
return invIOUID;
}
public void setInvIOUID(Long invIOUID) {
this.invIOUID = invIOUID;
}
/**
* @hibernate.many-to-one
* cascade="none"
* class="com.inv.vo.Inventory"
* column="InvUID"
* @return Inventory
*/
/**
* @hibernate.many-to-one
* cascade="none"
* class="com.inv.vo.Bind"
* column="BindUID"
* @return Bind
*/
public Bind getBind() {
return bind;
}
public void setBind(Bind bind) {
this.bind = bind;
}
/**
* @hibernate.many-to-one
* cascade="none"
* class="com.inv.vo.Item"
* column="ItemUID"
* @return Item
*/
public Item getItem() {
return item;
}
public void setItem(Item item) {
this.item = item;
}
/**
* @hibernate.property
* column="Qty"
* @return Integer
*/
public Integer getQty() {
return qty;
}
public void setQty(Integer qty) {
this.qty = qty;
}
/**
* @hibernate.property
* column="IoType"
* @return Boolean
*/
public Boolean getIoType() {
return ioType;
}
public void setIoType(Boolean ioType) {
this.ioType = ioType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -