jinlin
2024-09-05 aa4a6ed94ea6861a6ce634550d2f05f528529098
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
 
}