9 changed files with 321 additions and 70 deletions
@ -0,0 +1,120 @@ |
|||
package com.zc.business.domain; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import com.ruoyi.common.annotation.Excel; |
|||
import com.ruoyi.common.core.domain.BaseEntity; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import org.apache.commons.lang3.builder.ToStringBuilder; |
|||
import org.apache.commons.lang3.builder.ToStringStyle; |
|||
|
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 王思祥 |
|||
* @ClassName DcShiftsList |
|||
*/ |
|||
|
|||
public class DcShiftsList { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** */ |
|||
private Long id; |
|||
|
|||
/** 当值人员ID */ |
|||
@ApiModelProperty(value = "当值人员ID", required = true) |
|||
@Excel(name = "当值人员ID") |
|||
private Long employeesId; |
|||
|
|||
|
|||
|
|||
@Excel(name = "姓名") |
|||
private String name; |
|||
@Excel(name = "所属路管驻点名称") |
|||
private String organizationName; |
|||
@ApiModelProperty("排班 1-白班 2-夜班") |
|||
@Excel(name = "排班 1-白班 2-夜班") |
|||
private String scheduling; |
|||
@ApiModelProperty("驻点id") |
|||
@Excel(name = "驻点id") |
|||
private String station; |
|||
@Excel(name = "手机号") |
|||
private String contactNumber; |
|||
|
|||
|
|||
public String getContactNumber() { |
|||
return contactNumber; |
|||
} |
|||
|
|||
public void setContactNumber(String contactNumber) { |
|||
this.contactNumber = contactNumber; |
|||
} |
|||
|
|||
public String getScheduling() { |
|||
return scheduling; |
|||
} |
|||
|
|||
public String getStation() { |
|||
return station; |
|||
} |
|||
|
|||
public void setStation(String station) { |
|||
this.station = station; |
|||
} |
|||
|
|||
public void setScheduling(String scheduling) { |
|||
this.scheduling = scheduling; |
|||
} |
|||
|
|||
|
|||
|
|||
public String getOrganizationName() { |
|||
return organizationName; |
|||
} |
|||
|
|||
public void setOrganizationName(String organizationName) { |
|||
this.organizationName = organizationName; |
|||
} |
|||
|
|||
public String getName() { |
|||
return name; |
|||
} |
|||
|
|||
public void setName(String name) { |
|||
this.name = name; |
|||
} |
|||
|
|||
|
|||
|
|||
public void setId(Long id) |
|||
{ |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getId() |
|||
{ |
|||
return id; |
|||
} |
|||
|
|||
public void setEmployeesId(Long employeesId) |
|||
{ |
|||
this.employeesId = employeesId; |
|||
} |
|||
|
|||
public Long getEmployeesId() |
|||
{ |
|||
return employeesId; |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
|||
.append("id", getId()) |
|||
.append("employeesId", getEmployeesId()) |
|||
.toString(); |
|||
} |
|||
} |
Loading…
Reference in new issue