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;
|
}
|