package com.ruoyi.project.domain;
|
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* VIEW对象 v_donationworkflow
|
*
|
* @author ruoyi
|
* @date 2024-07-26
|
*/
|
@Data
|
@ApiModel("VIEW")
|
public class VDonationworkflow extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
@ApiModelProperty("$column.columnComment")
|
private Long id;
|
|
/** 姓名 */
|
@ApiModelProperty("姓名")
|
@Excel(name = "姓名")
|
private String name;
|
|
/** 证件号码 */
|
@ApiModelProperty("证件号码")
|
@Excel(name = "证件号码")
|
private String idcardno;
|
|
/** 工作流 */
|
@ApiModelProperty("工作流")
|
@Excel(name = "工作流")
|
private Long workflow;
|
|
/** 终止案例:0开启 1终止 默认 0 */
|
@ApiModelProperty("终止案例:0开启 1终止 默认 0")
|
@Excel(name = "终止案例:0开启 1终止 默认 0")
|
private Long terminationcase;
|
|
/** 部门/组编号 */
|
@ApiModelProperty("部门/组编号")
|
@Excel(name = "部门/组编号")
|
private Long deptid;
|
|
/** 部门/组名称 */
|
@ApiModelProperty("部门/组名称")
|
@Excel(name = "部门/组名称")
|
private String deptname;
|
|
/** 报告者编号 */
|
@ApiModelProperty("报告者编号")
|
@Excel(name = "报告者编号")
|
private String reporterno;
|
|
/** 报告者姓名 */
|
@ApiModelProperty("报告者姓名")
|
@Excel(name = "报告者姓名")
|
private String reportername;
|
|
/** 案例时间 */
|
@ApiModelProperty("案例时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "案例时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date donatetime;
|
|
/** 报告时间 */
|
@ApiModelProperty("报告时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "报告时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date reporttime;
|
|
/** 省级评估组核心成员结论 见字典sys_CoreAssessConclusion */
|
@ApiModelProperty("省级评估组核心成员结论 见字典sys_CoreAssessConclusion")
|
@Excel(name = "省级评估组核心成员结论 见字典sys_CoreAssessConclusion")
|
private String coreteamassessconclusion;
|
|
/** 省级评估组核心成员评估时间 */
|
@ApiModelProperty("省级评估组核心成员评估时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "省级评估组核心成员评估时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date coreteamassesstime;
|
|
/** 签署日期 */
|
@ApiModelProperty("签署日期")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "签署日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date signdate;
|
|
/** 专家结论 见字典伦理结论 */
|
@ApiModelProperty("专家结论 见字典伦理结论")
|
@Excel(name = "专家结论 见字典伦理结论")
|
private Long expertconclusion;
|
|
/** 结论时间 */
|
@ApiModelProperty("结论时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "结论时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date conclusiontime;
|
|
/** $column.columnComment */
|
@ApiModelProperty("$column.columnComment")
|
@Excel(name = "结论时间")
|
private Long organcount;
|
|
/** 手术开始时间 */
|
@ApiModelProperty("手术开始时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "手术开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date operationbegtime;
|
|
/** 完成时间 */
|
@ApiModelProperty("完成时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "完成时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date completetime;
|
|
}
|