| package com.ruoyi.alarmpoints.well.domain; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import com.ruoyi.common.annotation.Excel; | 
| import com.ruoyi.common.core.domain.BaseEntity; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| /** | 
|  * 井管理对象 ard_alarmpoints_well | 
|  *  | 
|  * @author 刘苏义 | 
|  * @date 2023-03-07 | 
|  */ | 
| @Data | 
| public class ArdAlarmpointsWellParam | 
| { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** 井号 */ | 
|     private String wellId; | 
|   | 
|     /** 井号编码 */ | 
|     private String wellNumber; | 
|   | 
|     /** 采油方式 */ | 
|     private String oilProduction; | 
|   | 
|     /** 进所属区块 */ | 
|     private String wellBlock; | 
|   | 
|     /** 驱替方式 */ | 
|     private String displacementMode; | 
|   | 
|     /** 周边环境 */ | 
|     private String surroundingEnvironment; | 
|   | 
|     /** 油井类型 */ | 
|     private String wellType; | 
|   | 
|     /** 装载负荷 */ | 
|     private String installedLoad; | 
|   | 
|     /** 所属计量站或阀组名称 */ | 
|     private String meteringStation; | 
|   | 
|     /** 所属转接站 */ | 
|     private String transferStation; | 
|   | 
|     /** 所属脱水站 */ | 
|     private String dehydrationStation; | 
|   | 
|     /** 运行状态 */ | 
|     private String runStatus; | 
|   | 
|     @TableField(exist = false) | 
|     private List<Long> deptList; | 
|   | 
|     @TableField(exist = false) | 
|     private Integer pageNum = 1; | 
|     @TableField(exist = false) | 
|     private Integer pageSize = 10; | 
|   | 
| } |