Skip to content

Instantly share code, notes, and snippets.

@gitbricho
Last active August 29, 2015 14:09
Show Gist options
  • Save gitbricho/dcbf38f77d78e47ac9f0 to your computer and use it in GitHub Desktop.
Save gitbricho/dcbf38f77d78e47ac9f0 to your computer and use it in GitHub Desktop.
healthcare : com.trane.healthcare.model.VitalMst.java
@Entity
@Table(name = "vitalmst")
public class VitalMst implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Integer id = null;
@Version
protected Integer version = 0;
private String name;
private String jikan;
private Number kijunMin;
private Number kijunMax;
private String type;
private int junjo;
public VitalMst() {
//
}
public VitalMst(String name, String jikan,
Number kijunMin, Number kijunMax,
String type, int junjo) {
super();
this.name = name;
this.jikan = jikan;
this.kijunMin = kijunMin;
this.kijunMax = kijunMax;
this.type = type;
this.junjo = junjo;
}
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment