|
@ -4,9 +4,6 @@ import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.GeneratedValue;
|
|
|
import static javax.persistence.GenerationType.IDENTITY;
|
|
|
import javax.persistence.Id;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
/**
|
|
@ -35,6 +32,7 @@ public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
private String validFlag;//有效标志 0:无效;1:有效
|
|
|
private String spellCode;//拼音首码
|
|
|
private String wbzxCode;//五笔首码
|
|
|
private String storageConditions;//2表示需要冷藏,其他表示不需要冷藏
|
|
|
private Integer sequence;//排序号
|
|
|
|
|
|
// Constructors
|
|
@ -222,4 +220,12 @@ public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
this.sequence = sequence;
|
|
|
}
|
|
|
|
|
|
@Column(name = "storage_conditions")
|
|
|
public String getStorageConditions() {
|
|
|
return storageConditions;
|
|
|
}
|
|
|
|
|
|
public void setStorageConditions(String storageConditions) {
|
|
|
this.storageConditions = storageConditions;
|
|
|
}
|
|
|
}
|