| | |
| | | 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; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * app巡检计划记录对象 ard_app_patrolpoint_record |
| | |
| | | * @author ard |
| | | * @date 2023-08-02 |
| | | */ |
| | | @Data |
| | | public class ArdAppPatrolpointRecord extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @Excel(name = "巡检点主键") |
| | | private String appPatrolpointsId; |
| | | |
| | | public void setId(String id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | private String appPatrolpointsName; |
| | | |
| | | public String getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setLongitude(String longitude) |
| | | { |
| | | this.longitude = longitude; |
| | | } |
| | | private String planId; |
| | | |
| | | public String getLongitude() |
| | | { |
| | | return longitude; |
| | | } |
| | | public void setLatitude(String latitude) |
| | | { |
| | | this.latitude = latitude; |
| | | } |
| | | private String planName; |
| | | |
| | | public String getLatitude() |
| | | { |
| | | return latitude; |
| | | } |
| | | public void setUserId(String userId) |
| | | { |
| | | this.userId = userId; |
| | | } |
| | | private String userName; |
| | | |
| | | public String getUserId() |
| | | { |
| | | return userId; |
| | | } |
| | | public void setRecordTime(String recordTime) |
| | | { |
| | | this.recordTime = recordTime; |
| | | } |
| | | private String remark; |
| | | |
| | | public String getRecordTime() |
| | | { |
| | | return recordTime; |
| | | } |
| | | public void setAppPatrolpointsId(String appPatrolpointsId) |
| | | { |
| | | this.appPatrolpointsId = appPatrolpointsId; |
| | | } |
| | | |
| | | public String getAppPatrolpointsId() |
| | | { |
| | | return appPatrolpointsId; |
| | | } |
| | | @TableField(exist = false) |
| | | private List<String> img; |
| | | |
| | | @Override |
| | | public String toString() { |