|  |  | 
 |  |  | package com.dy.pmsGlobal.pojoPlt; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.*; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | import com.alibaba.fastjson2.annotation.JSONField; | 
 |  |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
 |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableId; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
 |  |  | import com.dy.common.po.BaseEntity; | 
 |  |  | import jakarta.validation.constraints.NotEmpty; | 
 |  |  | import lombok.*; | 
 |  |  | import org.hibernate.validator.constraints.Length; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * 生产线表 | 
 |  |  | 
 |  |  | @ToString | 
 |  |  | @NoArgsConstructor | 
 |  |  | @AllArgsConstructor | 
 |  |  | public class PltProductionLine{ | 
 |  |  | public class PltProductionLine  implements BaseEntity { | 
 |  |  |     /** | 
 |  |  |      *  | 
 |  |  |      */ | 
 |  |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
 |  |  |     @TableId(type = IdType.AUTO) | 
 |  |  |     public Long id; | 
 |  |  |  | 
 |  |  | 
 |  |  |     public String installTime; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 是否禁用,1是,0否 | 
 |  |  |      */ | 
 |  |  |     public Boolean disabled; | 
 |  |  |     /** | 
 |  |  |      * 是否删除,1是,0否 | 
 |  |  |      */ | 
 |  |  |     public Boolean deleted; |