package com.ruoyi.collaborativeApproval.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import io.swagger.annotations.ApiModelProperty;
|
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(所属者)
|
// */
|
// @ApiModelProperty("用户ID(所属者)")
|
// private Integer userId;
|
|
/**
|
* 员工ID
|
*/
|
@ApiModelProperty("员工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;
|
}
|