RContractUser.java 1.14 KB
package vion.model;

import com.baomidou.mybatisplus.annotation.*;
import lombok.Getter;
import lombok.Setter;
import vion.dto.BaseDTO;

import java.time.LocalDate;
import java.time.LocalDateTime;

/**
 * @author HlQ
 * @date 2023/12/28
 */
@Getter
@Setter
@TableName(value = "r_contract_user")
public class RContractUser extends BaseDTO {
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

    /**
     * 合同id
     */
    @TableField(value = "contract_id")
    private Long contractId;

    /**
     * 合同号
     */
    @TableField(value = "contract_no")
    private String contractNo;

    /**
     * 用户id,用钉钉的userid
     */
    @TableField(value = "user_id")
    private String userId;

    /**
     * 用户名
     */
    @TableField(value = "username", condition = SqlCondition.LIKE)
    private String username;

    /**
     * 备注
     */
    @TableField(value = "remark")
    private String remark;

    /**
     * 录入日期
     */
    @TableField(value = "enter_date")
    private LocalDate enterDate;

    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private LocalDateTime createTime;
}