123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- package com.idea.oa.apply.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- public class ApplyAddWorkTime implements Serializable {
- private String id;
- private String addWorkId;
- private BigDecimal useTime;
- private Date startDay;
- private Date startTime;
- private Date endTime;
- private Integer status;
- private String createdBy;
- private Date createdAt;
- private String updatedBy;
- private Date updatedAt;
- private String remark;
- private static final long serialVersionUID = 1L;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id == null ? null : id.trim();
- }
- public String getAddWorkId() {
- return addWorkId;
- }
- public void setAddWorkId(String addWorkId) {
- this.addWorkId = addWorkId == null ? null : addWorkId.trim();
- }
- public BigDecimal getUseTime() {
- return useTime;
- }
- public void setUseTime(BigDecimal useTime) {
- this.useTime = useTime;
- }
- public Date getStartDay() {
- return startDay;
- }
- public void setStartDay(Date startDay) {
- this.startDay = startDay;
- }
- public Date getStartTime() {
- return startTime;
- }
- public void setStartTime(Date startTime) {
- this.startTime = startTime;
- }
- public Date getEndTime() {
- return endTime;
- }
- public void setEndTime(Date endTime) {
- this.endTime = endTime;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getCreatedBy() {
- return createdBy;
- }
- public void setCreatedBy(String createdBy) {
- this.createdBy = createdBy == null ? null : createdBy.trim();
- }
- public Date getCreatedAt() {
- return createdAt;
- }
- public void setCreatedAt(Date createdAt) {
- this.createdAt = createdAt;
- }
- public String getUpdatedBy() {
- return updatedBy;
- }
- public void setUpdatedBy(String updatedBy) {
- this.updatedBy = updatedBy == null ? null : updatedBy.trim();
- }
- public Date getUpdatedAt() {
- return updatedAt;
- }
- public void setUpdatedAt(Date updatedAt) {
- this.updatedAt = updatedAt;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- }
|