123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.usky.fire.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- /**
- * <p>
- * 天然水源信息表
- * </p>
- *
- * @author JCB
- * @since 2022-10-25
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class DemWaterSourceMaintain implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 支队
- */
- private String detachment;
- /**
- * 中队
- */
- private String squadron;
- /**
- * 取水点位置描述
- */
- @TableField(value = "describe")
- private String describe;
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
- /**
- * 创建人
- */
- private String creator;
- /**
- * 更新时间
- */
- private LocalDateTime updateTime;
- /**
- * 更新人
- */
- private String updatePerson;
- /**
- * 删除标识
- */
- private String deleteFlag;
- /**
- * 经度
- */
- private String longitude;
- /**
- * 纬度
- */
- private String latitude;
- }
|