package com.ruoyi.station.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 统计对象 mj_statistic
|
*
|
* @author ruoyi
|
* @date 2020-09-24
|
*/
|
public class MjStatistic extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private String id;
|
|
/** 长期授权人数 */
|
@Excel(name = "长期授权人数")
|
private Integer teamnum;
|
|
/** 临时授权人数 */
|
@Excel(name = "临时授权人数")
|
private Integer ordernum1;
|
|
/** 工作票授权人数 */
|
@Excel(name = "工作票授权人数")
|
private Integer ordernum2;
|
|
/** 长期授权开门总次数 */
|
@Excel(name = "长期授权开门总次数")
|
private Integer teamopen;
|
|
/** 临时授权开门总次数 */
|
@Excel(name = "临时授权开门总次数")
|
private Integer orderopen1;
|
|
/** 工作票授权开门总次数 */
|
@Excel(name = "工作票授权开门总次数")
|
private Integer orderopen2;
|
|
/** 备用 */
|
@Excel(name = "备用")
|
private Integer statu1;
|
|
/** 备用 */
|
@Excel(name = "备用")
|
private Integer statu2;
|
|
/** 备用 */
|
@Excel(name = "备用")
|
private Integer statu3;
|
|
/** 备用 */
|
@Excel(name = "备用")
|
private String statu4;
|
|
/** 备用 */
|
@Excel(name = "备用")
|
private String statu5;
|
|
/** 备用 */
|
@Excel(name = "备用")
|
private String statu6;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setTeamnum(Integer teamnum)
|
{
|
this.teamnum = teamnum;
|
}
|
|
public Integer getTeamnum()
|
{
|
return teamnum;
|
}
|
public void setOrdernum1(Integer ordernum1)
|
{
|
this.ordernum1 = ordernum1;
|
}
|
|
public Integer getOrdernum1()
|
{
|
return ordernum1;
|
}
|
public void setOrdernum2(Integer ordernum2)
|
{
|
this.ordernum2 = ordernum2;
|
}
|
|
public Integer getOrdernum2()
|
{
|
return ordernum2;
|
}
|
public void setTeamopen(Integer teamopen)
|
{
|
this.teamopen = teamopen;
|
}
|
|
public Integer getTeamopen()
|
{
|
return teamopen;
|
}
|
public void setOrderopen1(Integer orderopen1)
|
{
|
this.orderopen1 = orderopen1;
|
}
|
|
public Integer getOrderopen1()
|
{
|
return orderopen1;
|
}
|
public void setOrderopen2(Integer orderopen2)
|
{
|
this.orderopen2 = orderopen2;
|
}
|
|
public Integer getOrderopen2()
|
{
|
return orderopen2;
|
}
|
public void setStatu1(Integer statu1)
|
{
|
this.statu1 = statu1;
|
}
|
|
public Integer getStatu1()
|
{
|
return statu1;
|
}
|
public void setStatu2(Integer statu2)
|
{
|
this.statu2 = statu2;
|
}
|
|
public Integer getStatu2()
|
{
|
return statu2;
|
}
|
public void setStatu3(Integer statu3)
|
{
|
this.statu3 = statu3;
|
}
|
|
public Integer getStatu3()
|
{
|
return statu3;
|
}
|
public void setStatu4(String statu4)
|
{
|
this.statu4 = statu4;
|
}
|
|
public String getStatu4()
|
{
|
return statu4;
|
}
|
public void setStatu5(String statu5)
|
{
|
this.statu5 = statu5;
|
}
|
|
public String getStatu5()
|
{
|
return statu5;
|
}
|
public void setStatu6(String statu6)
|
{
|
this.statu6 = statu6;
|
}
|
|
public String getStatu6()
|
{
|
return statu6;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("teamnum", getTeamnum())
|
.append("ordernum1", getOrdernum1())
|
.append("ordernum2", getOrdernum2())
|
.append("teamopen", getTeamopen())
|
.append("orderopen1", getOrderopen1())
|
.append("orderopen2", getOrderopen2())
|
.append("statu1", getStatu1())
|
.append("statu2", getStatu2())
|
.append("statu3", getStatu3())
|
.append("statu4", getStatu4())
|
.append("statu5", getStatu5())
|
.append("statu6", getStatu6())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("createBy", getCreateBy())
|
.append("updateBy", getUpdateBy())
|
.toString();
|
}
|
}
|