| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWell; |
| | | import com.ruoyi.common.core.domain.entity.SysUser; |
| | | import lombok.Data; |
| | | 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; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * app巡检计划对象 ard_app_patrolplan |
| | |
| | | private String patroEndTime; |
| | | |
| | | /** |
| | | * 巡检点 |
| | | * 巡检点查询条件 |
| | | */ |
| | | @TableField(exist = false,select = false) |
| | | // @JsonInclude(JsonInclude.Include.NON_DEFAULT ) |
| | | private String wellId; |
| | | |
| | | /** |
| | | * 巡检人员 |
| | | * 巡检人员查询条件 |
| | | */ |
| | | @TableField(exist = false,select = false) |
| | | // @JsonInclude(JsonInclude.Include.NON_DEFAULT ) |
| | | private String pUser; |
| | | |
| | | /** |
| | | * 巡检点集合 |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<ArdAlarmpointsWell> wellList; |
| | | |
| | | /** |
| | | * 巡检人集合 |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<SysUser> userList; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |