| | |
| | | package com.ltkj.hosp.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | |
| | | @ApiModelProperty(value = "父项目id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long proId; |
| | | @TableField(exist = false) |
| | | private String prosId; |
| | | |
| | | @ApiModelProperty(value = "父项目名称") |
| | | @TableField(exist = false) |
| | |
| | | */ |
| | | @Excel(name = "备注详情") |
| | | @ApiModelProperty("备注详情") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String remark; |
| | | |
| | | /** |
| | |
| | | |
| | | |
| | | @ApiModelProperty("小结") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String summary; |
| | | |
| | | |
| | |
| | | @ApiModelProperty(value = "是否复检") |
| | | private Integer isReturn; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "延期截止日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date yqDeadline; |
| | | |
| | | @ApiModelProperty(value = "加项标志") |
| | | private String jxbz; |
| | | |
| | | |
| | | @ApiModelProperty(value = "收费标志") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private String sfbz; |
| | | |
| | | |
| | | @ApiModelProperty(value = "项目类别") |
| | | @TableField(exist = false) |
| | | private String xmlb; |
| | | |
| | | |
| | | @ApiModelProperty(value = "结果表现") |
| | | @TableField(exist = false) |
| | | private String jgbx; |
| | | |
| | | @TableField(exist = false) |
| | | // 0检验 1检查 |
| | | private String jyjc; |
| | | |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | // 科室 |
| | | private String ks; |
| | | |
| | | @TableField(exist = false) |
| | | private String orgType; |
| | | |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |