zqy
2024-04-26 a979d3b0f9bb814ffeb014fd210e4dff99462e81
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.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.ToString;
 
import java.io.Serializable;
 
/**
 * @Version 1.0
 * @Author Jin_quan Ou
 * @Date 2023-03-25 10:31
 */
@Data
@ToString
public class ZfRelation implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private Long myId;
 
    private String relation;
 
    private String otherName;
 
    private String otherUnit;
 
    private String otherPosition;
 
    private String otherPolitical;
}