| | |
| | | package com.ruoyi.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | import lombok.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 Long otherId; |
| | | |
| | | private String relation; |
| | | |
| | | private String otherName; |
| | | |
| | | private String otherUnit; |
| | | |
| | | private String otherPosition; |
| | | |
| | | private String otherPolitical; |
| | | } |