|  |  | 
 |  |  |  | 
 |  |  | import com.alibaba.fastjson2.annotation.JSONField; | 
 |  |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
 |  |  | import com.dy.common.po.BaseEntity; | 
 |  |  | import jakarta.validation.constraints.NotBlank; | 
 |  |  | 
 |  |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
 |  |  |     public Long proId; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String name; | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String proType; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 生产数量 | 
 |  |  |     */ | 
 |  |  | 
 |  |  |     @JSONField(serialize = false) | 
 |  |  |     public Boolean deleted; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String completeRate; | 
 |  |  |  | 
 |  |  | } |