feige
2024-06-10 f34203dacf5485b06d9d80618e5e14cf4463c2d7
zhang-content/src/main/java/com/ruoyi/domain/ZfRelation.java
@@ -1,5 +1,7 @@
package com.ruoyi.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.ToString;
@@ -15,8 +17,18 @@
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;
}