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: liyj
|
* @time: 2024-10-14 10:03:57
|
* @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;
|
|
/**
|
* 催办状态,0:未回复,1:已回复
|
*/
|
@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 Date replyTime;
|
|
/**
|
* 回复耗时,单位:小时
|
*/
|
@TableField(value = "usetime_hour")
|
private Integer usetimeHour;
|
|
/**
|
* 回复超时状态,0:未超时,1:已超时
|
*/
|
@TableField(value = "overtime_status")
|
private Integer overtimeStatus;
|
|
/**
|
* 回复超时,单位:小时
|
*/
|
@TableField(value = "overtime_hour")
|
private Integer overtimeHour;
|
|
/**
|
* 删除状态,0:未删除,1:已删除
|
*/
|
@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;
|
|
}
|