1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| package org.fkit.hrm.domain; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; public class Employee implements Serializable { private static final long serialVersionUID = 1L; private Integer id; private Dept dept; private Job job; private String name; private String cardId; private String address; private String postCode; private String tel; private String phone; private String qqNum; private String email; private Integer sex; private String party;
@DateTimeFormat(pattern = "yyyy-MM-dd") private java.util.Date birthday; private String race; private String education; private String speciality; private String hobby; private String remark; private java.util.Date createDate; public Employee() { super(); } @Override public String toString() { return "Employee [id=" + id + ", dept=" + dept + ", job=" + job + ", name=" + name + ", cardId=" + cardId + ", address=" + address + ", postCode=" + postCode + ", tel=" + tel + ", phone=" + phone + ", qqNum=" + qqNum + ", email=" + email + ", sex=" + sex + ", party=" + party + ", birthday=" + birthday + ", race=" + race + ", education=" + education + ", speciality=" + speciality + ", hobby=" + hobby + ", remark=" + remark + ", createDate=" + createDate + "]"; } }
|