package org.jeecg.modules.base.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.jeecg.common.aspect.annotation.Dict; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; @Data public class FactoryModelDetail { private String id; private String enterpriseId; private String code; private String name; private String departId; private String parentId; private String factoryElementCategoryName; private String factoryElementCategoryId; private Integer virtualFlag; private String version; private String remark; private String status; private String auditStatus; private String createBy; @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") private java.util.Date createTime; private String updateBy; @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") private java.util.Date updateTime; private String tenantId; private Integer delFlag; private String hasChild; private String departName; private String parentName; }