package cn.huge.module.cases.domain.po;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @title: 纠纷催办信息表数据库对应关系类
|
* @description: PO中的属性与数据表是一一对应关系,如需根据业务处理不同,请使用BO对象。
|
* @company:hugeinfo
|
* @author: zhouxt
|
* @time: 2024-09-08 10:39:38
|
* @version 1.0.0
|
*/
|
@TableName(value = "dyh_case_urging")
|
@Data
|
public class CaseUrging {
|
|
/**
|
* 主键编号
|
*/
|
@TableId(value = "id")
|
private String id;
|
|
/**
|
* 纠纷编号
|
*/
|
@TableField(value = "case_id")
|
private String caseId;
|
|
/**
|
* 催办意见
|
*/
|
@TableField(value = "urging_content")
|
private String urgingContent;
|
|
/**
|
* 催办人编号
|
*/
|
@TableField(value = "urging_user_id")
|
private String urgingUserId;
|
|
/**
|
* 催办人名称
|
*/
|
@TableField(value = "urging_user_name")
|
private String urgingUserName;
|
|
/**
|
* 催办时间
|
*/
|
@TableField(value = "urging_time")
|
private Date urgingTime;
|
|
/**
|
* 催办状态
|
*/
|
@TableField(value = "urging_status")
|
private Integer urgingStatus;
|
|
/**
|
* 回复期限
|
*/
|
@TableField(value = "reply_term")
|
private Integer replyTerm;
|
|
/**
|
* 回复内容
|
*/
|
@TableField(value = "reply_content")
|
private String replyContent;
|
|
/**
|
* 回复人编号
|
*/
|
@TableField(value = "reply_user_id")
|
private String replyUserId;
|
|
/**
|
* 回复人名称
|
*/
|
@TableField(value = "reply_user_name")
|
private String replyUserName;
|
|
/**
|
* 回复时间
|
*/
|
@TableField(value = "reply_time")
|
private String replyTime;
|
|
/**
|
* 删除状态
|
*/
|
@TableLogic
|
@TableField(value = "delete_status")
|
private Integer deleteStatus;
|
|
/**
|
* 客户编号
|
*/
|
@TableField(value = "cust_id")
|
private String custId;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(value = "create_time")
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
@TableField(value = "update_time")
|
private Date updateTime;
|
|
}
|