|
@@ -1,210 +0,0 @@
|
|
|
-package com.diagbot.entity;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.util.Date;
|
|
|
-import java.io.Serializable;
|
|
|
-
|
|
|
-/**
|
|
|
- * <p>
|
|
|
- * 提示信息明细
|
|
|
- * </p>
|
|
|
- *
|
|
|
- * @author zhaops
|
|
|
- * @since 2018-11-16
|
|
|
- */
|
|
|
-@TableName("icss_introduce_detail")
|
|
|
-public class IntroduceDetail implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 主键
|
|
|
- */
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否删除,N:未删除,Y:删除
|
|
|
- */
|
|
|
- private String isDeleted;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录创建时间
|
|
|
- */
|
|
|
- private Date gmtCreate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
- */
|
|
|
- private Date gmtModified;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建人,0表示无创建人值
|
|
|
- */
|
|
|
- private String creator;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改人,如果为0则表示纪录未修改
|
|
|
- */
|
|
|
- private String modifier;
|
|
|
-
|
|
|
- /**
|
|
|
- * 提示信息id
|
|
|
- */
|
|
|
- private Long introduceId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 提示明细标题
|
|
|
- */
|
|
|
- private String title;
|
|
|
-
|
|
|
- /**
|
|
|
- * 提示明细内容
|
|
|
- */
|
|
|
- private String content;
|
|
|
-
|
|
|
- /**
|
|
|
- * 提示明细内容-纯文本
|
|
|
- */
|
|
|
- private String text;
|
|
|
-
|
|
|
- /**
|
|
|
- * 提示明细序号
|
|
|
- */
|
|
|
- private Integer orderNo;
|
|
|
-
|
|
|
- /**
|
|
|
- * 显示位置(多选):1-推送展示,2-更多展示,3-一般治疗展示,4-手术治疗展示,5-药品说明书,6-指标说明
|
|
|
- */
|
|
|
- private String position;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否诊断依据(1-是,0-否)
|
|
|
- */
|
|
|
- private Integer isReason;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIsDeleted() {
|
|
|
- return isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGmtCreate() {
|
|
|
- return gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreate(Date gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(Date gmtModified) {
|
|
|
- this.gmtModified = gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreator() {
|
|
|
- return creator;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getIntroduceId() {
|
|
|
- return introduceId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIntroduceId(Long introduceId) {
|
|
|
- this.introduceId = introduceId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTitle() {
|
|
|
- return title;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTitle(String title) {
|
|
|
- this.title = title;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContent() {
|
|
|
- return content;
|
|
|
- }
|
|
|
-
|
|
|
- public void setContent(String content) {
|
|
|
- this.content = content;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getOrderNo() {
|
|
|
- return orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getText() {
|
|
|
- return text;
|
|
|
- }
|
|
|
-
|
|
|
- public void setText(String text) {
|
|
|
- this.text = text;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderNo(Integer orderNo) {
|
|
|
- this.orderNo = orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPosition() {
|
|
|
- return position;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPosition(String position) {
|
|
|
- this.position = position;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsReason() {
|
|
|
- return isReason;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsReason(Integer isReason) {
|
|
|
- this.isReason = isReason;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "IntroduceDetail{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", introduceId=" + introduceId +
|
|
|
- ", title=" + title +
|
|
|
- ", content=" + content +
|
|
|
- ", text=" + text +
|
|
|
- ", orderNo=" + orderNo +
|
|
|
- ", position=" + position +
|
|
|
- ", is_reason=" + isReason +
|
|
|
- "}";
|
|
|
- }
|
|
|
-}
|