| | |
| | | package com.ruoyi.app.patrolplan.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | |
| | | * @author ard |
| | | * @date 2023-08-02 |
| | | */ |
| | | @Data |
| | | public class ArdAppPatrolplan extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 结束时间(每天为时分秒,仅一次为年月日时分秒) */ |
| | | @Excel(name = "结束时间(每天为时分秒,仅一次为年月日时分秒)") |
| | | private String patroEndTime; |
| | | |
| | | /** 制定人主键 */ |
| | | @Excel(name = "制定人主键") |
| | | private String userId; |
| | | |
| | | /** 周期 */ |
| | | @Excel(name = "周期") |
| | | private String cycle; |
| | | |
| | | /** 主键 */ |
| | | private String id; |
| | | |
| | | /** 制定人主键 */ |
| | | private String userId; |
| | | |
| | | @Excel(name = "制定人") |
| | | private String nickName; |
| | | |
| | | /** 周期 */ |
| | | @Excel(name = "周期",readConverterExp = "day=每日,once=单次") |
| | | private String cycle; |
| | | |
| | | /** 巡检计划名称 */ |
| | | @Excel(name = "巡检计划名称") |
| | | private String planName; |
| | | |
| | | /** 开始时间(每天为时分秒,仅一次为年月日时分秒) */ |
| | | @Excel(name = "开始时间(每天为时分秒,仅一次为年月日时分秒)") |
| | | /** 开始时间 */ |
| | | @Excel(name = "开始时间") |
| | | private String patroBeginTime; |
| | | |
| | | public void setPatroEndTime(String patroEndTime) |
| | | { |
| | | this.patroEndTime = patroEndTime; |
| | | } |
| | | /** 结束时间(每天为时分秒,仅一次为年月日时分秒) */ |
| | | @Excel(name = "结束时间") |
| | | private String patroEndTime; |
| | | |
| | | public String getPatroEndTime() |
| | | { |
| | | return patroEndTime; |
| | | } |
| | | public void setUserId(String userId) |
| | | { |
| | | this.userId = userId; |
| | | } |
| | | /** |
| | | * 巡检点 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String wellId; |
| | | |
| | | public String getUserId() |
| | | { |
| | | return userId; |
| | | } |
| | | public void setCycle(String cycle) |
| | | { |
| | | this.cycle = cycle; |
| | | } |
| | | |
| | | public String getCycle() |
| | | { |
| | | return cycle; |
| | | } |
| | | public void setId(String id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setPlanName(String planName) |
| | | { |
| | | this.planName = planName; |
| | | } |
| | | |
| | | public String getPlanName() |
| | | { |
| | | return planName; |
| | | } |
| | | public void setPatroBeginTime(String patroBeginTime) |
| | | { |
| | | this.patroBeginTime = patroBeginTime; |
| | | } |
| | | |
| | | public String getPatroBeginTime() |
| | | { |
| | | return patroBeginTime; |
| | | } |
| | | /** |
| | | * 巡检人员 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String pUser; |
| | | |
| | | @Override |
| | | public String toString() { |