package com.ruoyi.collaborativeApproval.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.time.LocalDateTime; @TableName("staff_contacts_personal") @Data public class StaffContactsPersonal { @TableId(value = "id", type = IdType.AUTO) private Long id; // /** // * 用户ID(所属者) // */ // @Schema(description = "用户ID(所属者)") // private Integer userId; /** * 员工ID */ @Schema(description = "员工ID") private Integer contactId; /** * 创建者 */ @TableField(fill = FieldFill.INSERT) private Integer createUser; /** * 创建时间 */ @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; /** * 租户ID */ @TableField(fill = FieldFill.INSERT) private Long tenantId; @TableField(fill = FieldFill.INSERT) private Long deptId; }