|
@@ -0,0 +1,225 @@
|
|
|
|
+package com.diagbot.entity;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ * BI日志表
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author gaodm
|
|
|
|
+ * @since 2019-11-11
|
|
|
|
+ */
|
|
|
|
+@TableName("log_bi_record")
|
|
|
|
+public class BiRecord implements Serializable {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 日志ID
|
|
|
|
+ */
|
|
|
|
+ @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;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院编码
|
|
|
|
+ */
|
|
|
|
+ private String hospitalCode;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院医生编码
|
|
|
|
+ */
|
|
|
|
+ private String doctorCode;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院科室编码
|
|
|
|
+ */
|
|
|
|
+ private String deptCode;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 产品类型(1:云平台内部;2:云平台外部;3:icss;4:智能分诊;5:页面推送模式;6:智能预问诊;7:数据引擎模式)
|
|
|
|
+ */
|
|
|
|
+ private Integer productType;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 功能编码
|
|
|
|
+ */
|
|
|
|
+ private String code;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 输入参数
|
|
|
|
+ */
|
|
|
|
+ private String params;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 返回参数
|
|
|
|
+ */
|
|
|
|
+ private String result;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 来源(1:后台接口;2:前端)
|
|
|
|
+ */
|
|
|
|
+ private Integer source;
|
|
|
|
+
|
|
|
|
+ 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 String getHospitalCode() {
|
|
|
|
+ return hospitalCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setHospitalCode(String hospitalCode) {
|
|
|
|
+ this.hospitalCode = hospitalCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getDoctorCode() {
|
|
|
|
+ return doctorCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDoctorCode(String doctorCode) {
|
|
|
|
+ this.doctorCode = doctorCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getDeptCode() {
|
|
|
|
+ return deptCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDeptCode(String deptCode) {
|
|
|
|
+ this.deptCode = deptCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getProductType() {
|
|
|
|
+ return productType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setProductType(Integer productType) {
|
|
|
|
+ this.productType = productType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCode() {
|
|
|
|
+ return code;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCode(String code) {
|
|
|
|
+ this.code = code;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getParams() {
|
|
|
|
+ return params;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setParams(String params) {
|
|
|
|
+ this.params = params;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getResult() {
|
|
|
|
+ return result;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setResult(String result) {
|
|
|
|
+ this.result = result;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSource() {
|
|
|
|
+ return source;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSource(Integer source) {
|
|
|
|
+ this.source = source;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return "BiRecord{" +
|
|
|
|
+ "id=" + id +
|
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
|
+ ", creator=" + creator +
|
|
|
|
+ ", modifier=" + modifier +
|
|
|
|
+ ", hospitalCode=" + hospitalCode +
|
|
|
|
+ ", doctorCode=" + doctorCode +
|
|
|
|
+ ", deptCode=" + deptCode +
|
|
|
|
+ ", productType=" + productType +
|
|
|
|
+ ", code=" + code +
|
|
|
|
+ ", params=" + params +
|
|
|
|
+ ", result=" + result +
|
|
|
|
+ ", source=" + source +
|
|
|
|
+ "}";
|
|
|
|
+ }
|
|
|
|
+}
|