package com.zt.life.modules.mainPart.test.model; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.zt.common.entity.CompanyEntity; import lombok.Data; import lombok.EqualsAndHashCode; @Data @EqualsAndHashCode(callSuper = false) @TableName("WX_SELFREPARING") public class ProjectSelfreparingTest extends CompanyEntity { private Long pid; private Long projectId; private Long projectMayjor; private Integer nodeType; private String code; private String name; private String remark; private String personLiable; @TableField(exist = false) private String partName; }