stuffinfo.java
来自「有关医院方向的开发」· Java 代码 · 共 251 行
JAVA
251 行
package com.woyi.dto;
// default package
import java.util.Date;
/**
* Stuffinfo generated by MyEclipse Persistence Tools
*/
public class Stuffinfo implements java.io.Serializable {
// Fields
private Integer sqlertid;
private String stuffid;
private String stuffname;
private String sex;
private Integer orgcode;
private Integer groupid;
private String cardId;
private float bimchg;
private Date birthday;
private String svcnum;
private String phone;
private String email;
private String address;
private String validflag;
private Date optdate;
private String optrid;
private String stuffdesc;
private String remark;
private Organization organization;
private Group group;
// Constructors
/** default constructor */
public Stuffinfo() {
}
/** minimal constructor */
public Stuffinfo(String stuffid) {
this.stuffid = stuffid;
}
/** full constructor */
public Stuffinfo(String stuffid, String stuffname, String sex,
Integer orgcode, Integer groupid, String cardId, float bimchg,
Date birthday, String svcnum, String phone, String email,
String address, String validflag, Date optdate, String optrid,
String stuffdesc, String remark) {
this.stuffid = stuffid;
this.stuffname = stuffname;
this.sex = sex;
this.orgcode = orgcode;
this.groupid = groupid;
this.cardId = cardId;
this.bimchg = bimchg;
this.birthday = birthday;
this.svcnum = svcnum;
this.phone = phone;
this.email = email;
this.address = address;
this.validflag = validflag;
this.optdate = optdate;
this.optrid = optrid;
this.stuffdesc = stuffdesc;
this.remark = remark;
}
// Property accessors
public Integer getSqlertid() {
return this.sqlertid;
}
public void setSqlertid(Integer sqlertid) {
this.sqlertid = sqlertid;
}
public String getStuffid() {
return this.stuffid;
}
public void setStuffid(String stuffid) {
this.stuffid = stuffid;
}
public String getStuffname() {
return this.stuffname;
}
public void setStuffname(String stuffname) {
this.stuffname = stuffname;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Integer getOrgcode() {
return this.orgcode;
}
public void setOrgcode(Integer orgcode) {
this.orgcode = orgcode;
}
public Integer getGroupid() {
return this.groupid;
}
public void setGroupid(Integer groupid) {
this.groupid = groupid;
}
public String getCardId() {
return this.cardId;
}
public void setCardId(String cardId) {
this.cardId = cardId;
}
public float getBimchg() {
return this.bimchg;
}
public void setBimchg(float bimchg) {
this.bimchg = bimchg;
}
public Date getBirthday() {
return this.birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getSvcnum() {
return this.svcnum;
}
public void setSvcnum(String svcnum) {
this.svcnum = svcnum;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getValidflag() {
return this.validflag;
}
public void setValidflag(String validflag) {
this.validflag = validflag;
}
public Date getOptdate() {
return this.optdate;
}
public void setOptdate(Date optdate) {
this.optdate = optdate;
}
public String getOptrid() {
return this.optrid;
}
public void setOptrid(String optrid) {
this.optrid = optrid;
}
public String getStuffdesc() {
return this.stuffdesc;
}
public void setStuffdesc(String stuffdesc) {
this.stuffdesc = stuffdesc;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Group getGroup() {
return group;
}
public void setGroup(Group group) {
this.group = group;
}
public Organization getOrganization() {
return organization;
}
public void setOrganization(Organization organization) {
this.organization = organization;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?