| | |
| | | }
|
| | |
|
| | | // 签到事件主键
|
| | | private Integer id;
|
| | | private String id;
|
| | | // 签到状态
|
| | | private Integer statusId;
|
| | | private String statusId;
|
| | | // 签到时间
|
| | | private Date statusDt;
|
| | | private String statusDt;
|
| | | // 人员主键
|
| | | private Integer personId;
|
| | | private String personId;
|
| | | // 签到位置
|
| | | private Integer placeId;
|
| | | private String placeId;
|
| | |
|
| | | /**
|
| | | * Get 签到事件主键
|
| | | */
|
| | | public Integer getId() {
|
| | | public String getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 签到事件主键
|
| | | */
|
| | | public void setId(Integer id) {
|
| | | public void setId(String id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 签到状态
|
| | | */
|
| | | public Integer getStatusId() {
|
| | | public String getStatusId() {
|
| | | return statusId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 签到状态
|
| | | */
|
| | | public void setStatusId(Integer statusId) {
|
| | | public void setStatusId(String statusId) {
|
| | | this.statusId = statusId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 签到时间
|
| | | */
|
| | | public Date getStatusDt() {
|
| | | public String getStatusDt() {
|
| | | return statusDt;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 签到时间
|
| | | */
|
| | | public void setStatusDt(Date statusDt) {
|
| | | public void setStatusDt(String statusDt) {
|
| | | this.statusDt = statusDt;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 人员主键
|
| | | */
|
| | | public Integer getPersonId() {
|
| | | public String getPersonId() {
|
| | | return personId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 人员主键
|
| | | */
|
| | | public void setPersonId(Integer personId) {
|
| | | public void setPersonId(String personId) {
|
| | | this.personId = personId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 签到位置
|
| | | */
|
| | | public Integer getPlaceId() {
|
| | | public String getPlaceId() {
|
| | | return placeId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 签到位置
|
| | | */
|
| | | public void setPlaceId(Integer placeId) {
|
| | | public void setPlaceId(String placeId) {
|
| | | this.placeId = placeId;
|
| | | }
|
| | |
|