| package com.dy.pmsGlobal.pojoPr; | 
|   | 
| import com.alibaba.fastjson2.annotation.JSONField; | 
| import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import java.io.Serializable; | 
|   | 
| import lombok.*; | 
|   | 
| /** | 
|  * 作业指导书关联表 | 
|  * @TableName pr_working_instruction | 
|  */ | 
| @TableName(value="pr_working_instruction", autoResultMap = true) | 
| @Data | 
| @Builder | 
| @ToString | 
| @NoArgsConstructor | 
| @AllArgsConstructor | 
| public class PrWorkingInstruction implements Serializable { | 
|     /** | 
|      *  | 
|      */ | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     @TableId(type = IdType.AUTO) | 
|     public Long id; | 
|   | 
|     /** | 
|      * 节点实体编号 | 
|      */ | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     public Long nodeId; | 
|   | 
|     /** | 
|      * 文件编号 | 
|      */ | 
|     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|     public Long fileId; | 
|   | 
|     /** | 
|      * 文件下载地址 | 
|      */ | 
|     @TableField(exist = false) | 
|     public String webUrl; | 
|   | 
|     @TableField(exist = false) | 
|     public String orgName; | 
|     @TableField(exist = false) | 
|     public String extName; | 
| } |