package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* 设备资源申请
|
*/
|
@Alias("DeviceResourceApply")
|
@TableName(schema = "db_experiment",value = "tb_device_resource_apply")
|
@ApiModel
|
public class DeviceResourceApply {
|
@ApiModelProperty("代理主键")
|
private Integer id ;
|
@ApiModelProperty("设备id")
|
private Integer deviceId ;
|
@ApiModelProperty("申请资源接入线路")
|
private String accessLine ;
|
@ApiModelProperty("申请资源分配电压")
|
private Integer assignedVol ;
|
@ApiModelProperty("申请接入时间段")
|
private String applyAccessPeriod ;
|
@ApiModelProperty("申请时间")
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "Asia/Shanghai")
|
private Date applyTime;
|
@ApiModelProperty("申请人")
|
private String applyOwner ;
|
@ApiModelProperty("申请状态:0-过期,1-审核中,2-审核通过,3-未审核通过")
|
private String status ;
|
@ApiModelProperty("审核时间")
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "Asia/Shanghai")
|
private Date approveTime ;
|
@ApiModelProperty("审核人")
|
private String approveOwner ;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getDeviceId() {
|
return deviceId;
|
}
|
|
public void setDeviceId(Integer deviceId) {
|
this.deviceId = deviceId;
|
}
|
|
public String getAccessLine() {
|
return accessLine;
|
}
|
|
public void setAccessLine(String accessLine) {
|
this.accessLine = accessLine;
|
}
|
|
public Integer getAssignedVol() {
|
return assignedVol;
|
}
|
|
public void setAssignedVol(Integer assignedVol) {
|
this.assignedVol = assignedVol;
|
}
|
|
public String getApplyAccessPeriod() {
|
return applyAccessPeriod;
|
}
|
|
public void setApplyAccessPeriod(String applyAccessPeriod) {
|
this.applyAccessPeriod = applyAccessPeriod;
|
}
|
|
public Date getApplyTime() {
|
return applyTime;
|
}
|
|
public void setApplyTime(Date applyTime) {
|
this.applyTime = applyTime;
|
}
|
|
public String getApplyOwner() {
|
return applyOwner;
|
}
|
|
public void setApplyOwner(String applyOwner) {
|
this.applyOwner = applyOwner;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public Date getApproveTime() {
|
return approveTime;
|
}
|
|
public void setApproveTime(Date approveTime) {
|
this.approveTime = approveTime;
|
}
|
|
public String getApproveOwner() {
|
return approveOwner;
|
}
|
|
public void setApproveOwner(String approveOwner) {
|
this.approveOwner = approveOwner;
|
}
|
}
|