123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- package com.ruoyi.zdsz.domain;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.Version;
- import com.ruoyi.common.core.domain.BaseEntity;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * 工业工程对象 z_engineering_gy
- *
- * @author ruoyi
- * @date 2024-01-02
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("z_engineering_gy")
- public class ZEngineeringGY extends BaseEntity {
- private static final long serialVersionUID=1L;
- /**
- *
- */
- @TableId(value = "id")
- private String id;
- /**
- * 行政区
- */
- private String district;
- /**
- * 工程类型
- */
- private String enginType;
- /**
- * 建筑单位
- */
- private String constructUnit;
- /**
- * 项目负责人
- */
- private String projectHead;
- /**
- * 现场负责人
- */
- private String sceneHead;
- /**
- * 设计单位
- */
- private String designUnit;
- /**
- * 设计负责人
- */
- private String designHead;
- /**
- * 设计联系电话
- */
- private String designPhone;
- /**
- * 监理单位
- */
- private String supervisionUnit;
- /**
- * 监理负责人
- */
- private String supervisionHead;
- /**
- * 监理联系电话
- */
- private String supervisionPhone;
- /**
- * 工程名称
- */
- private String enginName;
- /**
- * 工程分类
- */
- private String enginClassification;
- /**
- * 乐观锁
- */
- @Version
- private Long version;
- /**
- * 备注
- */
- private String remark;
- /**
- * 删除标识
- */
- @TableLogic
- private String delFlag;
- private Double pePreset;
- private Double gcPreset;
- }
|