package com.ruoyi.app.patrolplan.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;
|
|
/**
|
* app巡检计划人员对象 ard_app_patroluser
|
*
|
* @author ard
|
* @date 2023-08-02
|
*/
|
public class ArdAppPatroluser extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
@Excel(name = "主键")
|
private String reserved1;
|
|
/** 巡检主键 */
|
@Excel(name = "巡检主键")
|
private String patrolplanId;
|
|
/** app单兵端用户主键 */
|
@Excel(name = "app单兵端用户主键")
|
private String appUserId;
|
|
public void setReserved1(String reserved1)
|
{
|
this.reserved1 = reserved1;
|
}
|
|
public String getReserved1()
|
{
|
return reserved1;
|
}
|
public void setPatrolplanId(String patrolplanId)
|
{
|
this.patrolplanId = patrolplanId;
|
}
|
|
public String getPatrolplanId()
|
{
|
return patrolplanId;
|
}
|
public void setAppUserId(String appUserId)
|
{
|
this.appUserId = appUserId;
|
}
|
|
public String getAppUserId()
|
{
|
return appUserId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("reserved1", getReserved1())
|
.append("patrolplanId", getPatrolplanId())
|
.append("appUserId", getAppUserId())
|
.toString();
|
}
|
}
|