123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.ruoyi.zdsz.domain;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- import java.util.Date;
- import java.math.BigDecimal;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 工程用料对象 z_engineering_material
- *
- * @author ruoyi
- * @date 2023-12-27
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("z_engineering_material")
- public class ZEngineeringMaterial extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @TableId(value = "id")
- private String id;
- /**
- * 详情id
- */
- private String detailsId;
- /**
- * 上门类型
- */
- private String visitType;
- /**
- * 自闭阀类型
- */
- private String selfClosingValveType;
- /**
- * 腐蚀等级
- */
- private String corrosionLevel;
- /**
- * 品牌
- */
- private String brand;
- /**
- * 材质
- */
- private String materialQuality;
- /**
- * 规格
- */
- private String specifications;
- /**
- * 数量
- */
- private Long number;
- /**
- * 乐观锁
- */
- @Version
- private String version;
- /**
- * 备注
- */
- private String remark;
- /**
- * 删除标识
- */
- @TableLogic
- private String delFlag;
- }
|