浏览代码

基础代码生成

Zhaops 6 年之前
父节点
当前提交
e6e0eaf72a
共有 30 个文件被更改,包括 1191 次插入0 次删除
  1. 146 0
      icss-service/src/main/java/com/diagbot/entity/DeptVital.java
  2. 172 0
      icss-service/src/main/java/com/diagbot/entity/IntroduceDetail.java
  3. 133 0
      icss-service/src/main/java/com/diagbot/entity/IntroduceInfo.java
  4. 156 0
      icss-service/src/main/java/com/diagbot/entity/IntroduceMap.java
  5. 133 0
      icss-service/src/main/java/com/diagbot/entity/VitalOrder.java
  6. 16 0
      icss-service/src/main/java/com/diagbot/mapper/DeptVitalMapper.java
  7. 16 0
      icss-service/src/main/java/com/diagbot/mapper/IntroduceDetailMapper.java
  8. 16 0
      icss-service/src/main/java/com/diagbot/mapper/IntroduceInfoMapper.java
  9. 16 0
      icss-service/src/main/java/com/diagbot/mapper/IntroduceMapMapper.java
  10. 16 0
      icss-service/src/main/java/com/diagbot/mapper/VitalOrderMapper.java
  11. 16 0
      icss-service/src/main/java/com/diagbot/service/DeptVitalService.java
  12. 16 0
      icss-service/src/main/java/com/diagbot/service/IntroduceDetailService.java
  13. 16 0
      icss-service/src/main/java/com/diagbot/service/IntroduceInfoService.java
  14. 16 0
      icss-service/src/main/java/com/diagbot/service/IntroduceMapService.java
  15. 16 0
      icss-service/src/main/java/com/diagbot/service/VitalOrderService.java
  16. 20 0
      icss-service/src/main/java/com/diagbot/service/impl/DeptVitalServiceImpl.java
  17. 20 0
      icss-service/src/main/java/com/diagbot/service/impl/IntroduceDetailServiceImpl.java
  18. 20 0
      icss-service/src/main/java/com/diagbot/service/impl/IntroduceInfoServiceImpl.java
  19. 20 0
      icss-service/src/main/java/com/diagbot/service/impl/IntroduceMapServiceImpl.java
  20. 20 0
      icss-service/src/main/java/com/diagbot/service/impl/VitalOrderServiceImpl.java
  21. 20 0
      icss-service/src/main/java/com/diagbot/web/DeptVitalController.java
  22. 20 0
      icss-service/src/main/java/com/diagbot/web/IntroduceDetailController.java
  23. 20 0
      icss-service/src/main/java/com/diagbot/web/IntroduceInfoController.java
  24. 20 0
      icss-service/src/main/java/com/diagbot/web/IntroduceMapController.java
  25. 20 0
      icss-service/src/main/java/com/diagbot/web/VitalOrderController.java
  26. 18 0
      icss-service/src/main/resources/mapper/DeptVitalMapper.xml
  27. 20 0
      icss-service/src/main/resources/mapper/IntroduceDetailMapper.xml
  28. 17 0
      icss-service/src/main/resources/mapper/IntroduceInfoMapper.xml
  29. 19 0
      icss-service/src/main/resources/mapper/IntroduceMapMapper.xml
  30. 17 0
      icss-service/src/main/resources/mapper/VitalOrderMapper.xml

+ 146 - 0
icss-service/src/main/java/com/diagbot/entity/DeptVital.java

@@ -0,0 +1,146 @@
+package com.diagbot.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 科室查体对应表
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@TableName("icss_dept_vital")
+public class DeptVital implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 主键
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 是否删除,N:未删除,Y:删除
+     */
+    private String isDeleted;
+
+    /**
+     * 记录创建时间
+     */
+    private LocalDateTime gmtCreate;
+
+    /**
+     * 记录修改时间,如果时间是1970年则表示纪录未修改
+     */
+    private LocalDateTime gmtModified;
+
+    /**
+     * 创建人,0表示无创建人值
+     */
+    private String creator;
+
+    /**
+     * 修改人,如果为0则表示纪录未修改
+     */
+    private String modifier;
+
+    /**
+     * 科室id
+     */
+    private Long deptId;
+
+    /**
+     * 查体id(question_id)
+     */
+    private Long vitalId;
+
+    /**
+     * 备注
+     */
+    private String remark;
+
+    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 LocalDateTime getGmtCreate() {
+        return gmtCreate;
+    }
+
+    public void setGmtCreate(LocalDateTime gmtCreate) {
+        this.gmtCreate = gmtCreate;
+    }
+    public LocalDateTime getGmtModified() {
+        return gmtModified;
+    }
+
+    public void setGmtModified(LocalDateTime 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 getDeptId() {
+        return deptId;
+    }
+
+    public void setDeptId(Long deptId) {
+        this.deptId = deptId;
+    }
+    public Long getVitalId() {
+        return vitalId;
+    }
+
+    public void setVitalId(Long vitalId) {
+        this.vitalId = vitalId;
+    }
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+
+    @Override
+    public String toString() {
+        return "DeptVital{" +
+        "id=" + id +
+        ", isDeleted=" + isDeleted +
+        ", gmtCreate=" + gmtCreate +
+        ", gmtModified=" + gmtModified +
+        ", creator=" + creator +
+        ", modifier=" + modifier +
+        ", deptId=" + deptId +
+        ", vitalId=" + vitalId +
+        ", remark=" + remark +
+        "}";
+    }
+}

+ 172 - 0
icss-service/src/main/java/com/diagbot/entity/IntroduceDetail.java

@@ -0,0 +1,172 @@
+package com.diagbot.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 提示信息明细
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@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 LocalDateTime gmtCreate;
+
+    /**
+     * 记录修改时间,如果时间是1970年则表示纪录未修改
+     */
+    private LocalDateTime gmtModified;
+
+    /**
+     * 创建人,0表示无创建人值
+     */
+    private String creator;
+
+    /**
+     * 修改人,如果为0则表示纪录未修改
+     */
+    private String modifier;
+
+    /**
+     * 提示信息id
+     */
+    private Long introduceId;
+
+    /**
+     * 提示明细标题
+     */
+    private String title;
+
+    /**
+     * 提示明细内容
+     */
+    private String content;
+
+    /**
+     * 提示明细序号
+     */
+    private Integer orderNo;
+
+    /**
+     * 显示位置:1-右侧显示,0-都显示
+     */
+    private Integer position;
+
+    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 LocalDateTime getGmtCreate() {
+        return gmtCreate;
+    }
+
+    public void setGmtCreate(LocalDateTime gmtCreate) {
+        this.gmtCreate = gmtCreate;
+    }
+    public LocalDateTime getGmtModified() {
+        return gmtModified;
+    }
+
+    public void setGmtModified(LocalDateTime 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 void setOrderNo(Integer orderNo) {
+        this.orderNo = orderNo;
+    }
+    public Integer getPosition() {
+        return position;
+    }
+
+    public void setPosition(Integer position) {
+        this.position = position;
+    }
+
+    @Override
+    public String toString() {
+        return "IntroduceDetail{" +
+        "id=" + id +
+        ", isDeleted=" + isDeleted +
+        ", gmtCreate=" + gmtCreate +
+        ", gmtModified=" + gmtModified +
+        ", creator=" + creator +
+        ", modifier=" + modifier +
+        ", introduceId=" + introduceId +
+        ", title=" + title +
+        ", content=" + content +
+        ", orderNo=" + orderNo +
+        ", position=" + position +
+        "}";
+    }
+}

+ 133 - 0
icss-service/src/main/java/com/diagbot/entity/IntroduceInfo.java

@@ -0,0 +1,133 @@
+package com.diagbot.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 提示信息
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@TableName("icss_introduce_info")
+public class IntroduceInfo implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 主键
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 是否删除,N:未删除,Y:删除
+     */
+    private String isDeleted;
+
+    /**
+     * 记录创建时间
+     */
+    private LocalDateTime gmtCreate;
+
+    /**
+     * 记录修改时间,如果时间是1970年则表示纪录未修改
+     */
+    private LocalDateTime gmtModified;
+
+    /**
+     * 创建人,0表示无创建人值
+     */
+    private String creator;
+
+    /**
+     * 修改人,如果为0则表示纪录未修改
+     */
+    private String modifier;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 备注
+     */
+    private String remark;
+
+    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 LocalDateTime getGmtCreate() {
+        return gmtCreate;
+    }
+
+    public void setGmtCreate(LocalDateTime gmtCreate) {
+        this.gmtCreate = gmtCreate;
+    }
+    public LocalDateTime getGmtModified() {
+        return gmtModified;
+    }
+
+    public void setGmtModified(LocalDateTime 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 getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+
+    @Override
+    public String toString() {
+        return "IntroduceInfo{" +
+        "id=" + id +
+        ", isDeleted=" + isDeleted +
+        ", gmtCreate=" + gmtCreate +
+        ", gmtModified=" + gmtModified +
+        ", creator=" + creator +
+        ", modifier=" + modifier +
+        ", name=" + name +
+        ", remark=" + remark +
+        "}";
+    }
+}

+ 156 - 0
icss-service/src/main/java/com/diagbot/entity/IntroduceMap.java

@@ -0,0 +1,156 @@
+package com.diagbot.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 标签与提示信息映射表
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@TableName("icss_introduce_map")
+public class IntroduceMap implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 主键
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 是否删除,N:未删除,Y:删除
+     */
+    private String isDeleted;
+
+    /**
+     * 记录创建时间
+     */
+    private LocalDateTime gmtCreate;
+
+    /**
+     * 记录修改时间,如果时间是1970年则表示纪录未修改
+     */
+    private LocalDateTime gmtModified;
+
+    /**
+     * 创建人,0表示无创建人值
+     */
+    private String creator;
+
+    /**
+     * 修改人,如果为0则表示纪录未修改
+     */
+    private String modifier;
+
+    /**
+     * 标签id
+     */
+    private Long questionId;
+
+    /**
+     * 提示信息id
+     */
+    private Long introduceId;
+
+    /**
+     * 类型(参照icss_question_info)
+     */
+    private Integer type;
+
+    private String remark;
+
+    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 LocalDateTime getGmtCreate() {
+        return gmtCreate;
+    }
+
+    public void setGmtCreate(LocalDateTime gmtCreate) {
+        this.gmtCreate = gmtCreate;
+    }
+    public LocalDateTime getGmtModified() {
+        return gmtModified;
+    }
+
+    public void setGmtModified(LocalDateTime 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 getQuestionId() {
+        return questionId;
+    }
+
+    public void setQuestionId(Long questionId) {
+        this.questionId = questionId;
+    }
+    public Long getIntroduceId() {
+        return introduceId;
+    }
+
+    public void setIntroduceId(Long introduceId) {
+        this.introduceId = introduceId;
+    }
+    public Integer getType() {
+        return type;
+    }
+
+    public void setType(Integer type) {
+        this.type = type;
+    }
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+
+    @Override
+    public String toString() {
+        return "IntroduceMap{" +
+        "id=" + id +
+        ", isDeleted=" + isDeleted +
+        ", gmtCreate=" + gmtCreate +
+        ", gmtModified=" + gmtModified +
+        ", creator=" + creator +
+        ", modifier=" + modifier +
+        ", questionId=" + questionId +
+        ", introduceId=" + introduceId +
+        ", type=" + type +
+        ", remark=" + remark +
+        "}";
+    }
+}

+ 133 - 0
icss-service/src/main/java/com/diagbot/entity/VitalOrder.java

@@ -0,0 +1,133 @@
+package com.diagbot.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import java.time.LocalDateTime;
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 查体全局排序
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@TableName("icss_vital_order")
+public class VitalOrder implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 主键
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 是否删除,N:未删除,Y:删除
+     */
+    private String isDeleted;
+
+    /**
+     * 记录创建时间
+     */
+    private LocalDateTime gmtCreate;
+
+    /**
+     * 记录修改时间,如果时间是1970年则表示纪录未修改
+     */
+    private LocalDateTime gmtModified;
+
+    /**
+     * 创建人,0表示无创建人值
+     */
+    private String creator;
+
+    /**
+     * 修改人,如果为0则表示纪录未修改
+     */
+    private String modifier;
+
+    /**
+     * 查体id
+     */
+    private Long questionId;
+
+    /**
+     * 排序号
+     */
+    private Integer orderNo;
+
+    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 LocalDateTime getGmtCreate() {
+        return gmtCreate;
+    }
+
+    public void setGmtCreate(LocalDateTime gmtCreate) {
+        this.gmtCreate = gmtCreate;
+    }
+    public LocalDateTime getGmtModified() {
+        return gmtModified;
+    }
+
+    public void setGmtModified(LocalDateTime 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 getQuestionId() {
+        return questionId;
+    }
+
+    public void setQuestionId(Long questionId) {
+        this.questionId = questionId;
+    }
+    public Integer getOrderNo() {
+        return orderNo;
+    }
+
+    public void setOrderNo(Integer orderNo) {
+        this.orderNo = orderNo;
+    }
+
+    @Override
+    public String toString() {
+        return "VitalOrder{" +
+        "id=" + id +
+        ", isDeleted=" + isDeleted +
+        ", gmtCreate=" + gmtCreate +
+        ", gmtModified=" + gmtModified +
+        ", creator=" + creator +
+        ", modifier=" + modifier +
+        ", questionId=" + questionId +
+        ", orderNo=" + orderNo +
+        "}";
+    }
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/mapper/DeptVitalMapper.java

@@ -0,0 +1,16 @@
+package com.diagbot.mapper;
+
+import com.diagbot.entity.DeptVital;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 科室查体对应表 Mapper 接口
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface DeptVitalMapper extends BaseMapper<DeptVital> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/mapper/IntroduceDetailMapper.java

@@ -0,0 +1,16 @@
+package com.diagbot.mapper;
+
+import com.diagbot.entity.IntroduceDetail;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 提示信息明细 Mapper 接口
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface IntroduceDetailMapper extends BaseMapper<IntroduceDetail> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/mapper/IntroduceInfoMapper.java

@@ -0,0 +1,16 @@
+package com.diagbot.mapper;
+
+import com.diagbot.entity.IntroduceInfo;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 提示信息 Mapper 接口
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface IntroduceInfoMapper extends BaseMapper<IntroduceInfo> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/mapper/IntroduceMapMapper.java

@@ -0,0 +1,16 @@
+package com.diagbot.mapper;
+
+import com.diagbot.entity.IntroduceMap;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 标签与提示信息映射表 Mapper 接口
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface IntroduceMapMapper extends BaseMapper<IntroduceMap> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/mapper/VitalOrderMapper.java

@@ -0,0 +1,16 @@
+package com.diagbot.mapper;
+
+import com.diagbot.entity.VitalOrder;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 查体全局排序 Mapper 接口
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface VitalOrderMapper extends BaseMapper<VitalOrder> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/service/DeptVitalService.java

@@ -0,0 +1,16 @@
+package com.diagbot.service;
+
+import com.diagbot.entity.DeptVital;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 科室查体对应表 服务类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface DeptVitalService extends IService<DeptVital> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/service/IntroduceDetailService.java

@@ -0,0 +1,16 @@
+package com.diagbot.service;
+
+import com.diagbot.entity.IntroduceDetail;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 提示信息明细 服务类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface IntroduceDetailService extends IService<IntroduceDetail> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/service/IntroduceInfoService.java

@@ -0,0 +1,16 @@
+package com.diagbot.service;
+
+import com.diagbot.entity.IntroduceInfo;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 提示信息 服务类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface IntroduceInfoService extends IService<IntroduceInfo> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/service/IntroduceMapService.java

@@ -0,0 +1,16 @@
+package com.diagbot.service;
+
+import com.diagbot.entity.IntroduceMap;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 标签与提示信息映射表 服务类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface IntroduceMapService extends IService<IntroduceMap> {
+
+}

+ 16 - 0
icss-service/src/main/java/com/diagbot/service/VitalOrderService.java

@@ -0,0 +1,16 @@
+package com.diagbot.service;
+
+import com.diagbot.entity.VitalOrder;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 查体全局排序 服务类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+public interface VitalOrderService extends IService<VitalOrder> {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/service/impl/DeptVitalServiceImpl.java

@@ -0,0 +1,20 @@
+package com.diagbot.service.impl;
+
+import com.diagbot.entity.DeptVital;
+import com.diagbot.mapper.DeptVitalMapper;
+import com.diagbot.service.DeptVitalService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 科室查体对应表 服务实现类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Service
+public class DeptVitalServiceImpl extends ServiceImpl<DeptVitalMapper, DeptVital> implements DeptVitalService {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/service/impl/IntroduceDetailServiceImpl.java

@@ -0,0 +1,20 @@
+package com.diagbot.service.impl;
+
+import com.diagbot.entity.IntroduceDetail;
+import com.diagbot.mapper.IntroduceDetailMapper;
+import com.diagbot.service.IntroduceDetailService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 提示信息明细 服务实现类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Service
+public class IntroduceDetailServiceImpl extends ServiceImpl<IntroduceDetailMapper, IntroduceDetail> implements IntroduceDetailService {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/service/impl/IntroduceInfoServiceImpl.java

@@ -0,0 +1,20 @@
+package com.diagbot.service.impl;
+
+import com.diagbot.entity.IntroduceInfo;
+import com.diagbot.mapper.IntroduceInfoMapper;
+import com.diagbot.service.IntroduceInfoService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 提示信息 服务实现类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Service
+public class IntroduceInfoServiceImpl extends ServiceImpl<IntroduceInfoMapper, IntroduceInfo> implements IntroduceInfoService {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/service/impl/IntroduceMapServiceImpl.java

@@ -0,0 +1,20 @@
+package com.diagbot.service.impl;
+
+import com.diagbot.entity.IntroduceMap;
+import com.diagbot.mapper.IntroduceMapMapper;
+import com.diagbot.service.IntroduceMapService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 标签与提示信息映射表 服务实现类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Service
+public class IntroduceMapServiceImpl extends ServiceImpl<IntroduceMapMapper, IntroduceMap> implements IntroduceMapService {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/service/impl/VitalOrderServiceImpl.java

@@ -0,0 +1,20 @@
+package com.diagbot.service.impl;
+
+import com.diagbot.entity.VitalOrder;
+import com.diagbot.mapper.VitalOrderMapper;
+import com.diagbot.service.VitalOrderService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 查体全局排序 服务实现类
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Service
+public class VitalOrderServiceImpl extends ServiceImpl<VitalOrderMapper, VitalOrder> implements VitalOrderService {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/web/DeptVitalController.java

@@ -0,0 +1,20 @@
+package com.diagbot.web;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.stereotype.Controller;
+
+/**
+ * <p>
+ * 科室查体对应表 前端控制器
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Controller
+@RequestMapping("/deptVital")
+public class DeptVitalController {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/web/IntroduceDetailController.java

@@ -0,0 +1,20 @@
+package com.diagbot.web;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.stereotype.Controller;
+
+/**
+ * <p>
+ * 提示信息明细 前端控制器
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Controller
+@RequestMapping("/introduceDetail")
+public class IntroduceDetailController {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/web/IntroduceInfoController.java

@@ -0,0 +1,20 @@
+package com.diagbot.web;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.stereotype.Controller;
+
+/**
+ * <p>
+ * 提示信息 前端控制器
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Controller
+@RequestMapping("/introduceInfo")
+public class IntroduceInfoController {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/web/IntroduceMapController.java

@@ -0,0 +1,20 @@
+package com.diagbot.web;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.stereotype.Controller;
+
+/**
+ * <p>
+ * 标签与提示信息映射表 前端控制器
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Controller
+@RequestMapping("/introduceMap")
+public class IntroduceMapController {
+
+}

+ 20 - 0
icss-service/src/main/java/com/diagbot/web/VitalOrderController.java

@@ -0,0 +1,20 @@
+package com.diagbot.web;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.stereotype.Controller;
+
+/**
+ * <p>
+ * 查体全局排序 前端控制器
+ * </p>
+ *
+ * @author zhaops
+ * @since 2018-11-15
+ */
+@Controller
+@RequestMapping("/vitalOrder")
+public class VitalOrderController {
+
+}

+ 18 - 0
icss-service/src/main/resources/mapper/DeptVitalMapper.xml

@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.diagbot.mapper.DeptVitalMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.diagbot.entity.DeptVital">
+        <id column="id" property="id" />
+        <result column="is_deleted" property="isDeleted" />
+        <result column="gmt_create" property="gmtCreate" />
+        <result column="gmt_modified" property="gmtModified" />
+        <result column="creator" property="creator" />
+        <result column="modifier" property="modifier" />
+        <result column="dept_id" property="deptId" />
+        <result column="vital_id" property="vitalId" />
+        <result column="remark" property="remark" />
+    </resultMap>
+
+</mapper>

+ 20 - 0
icss-service/src/main/resources/mapper/IntroduceDetailMapper.xml

@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.diagbot.mapper.IntroduceDetailMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.diagbot.entity.IntroduceDetail">
+        <id column="id" property="id" />
+        <result column="is_deleted" property="isDeleted" />
+        <result column="gmt_create" property="gmtCreate" />
+        <result column="gmt_modified" property="gmtModified" />
+        <result column="creator" property="creator" />
+        <result column="modifier" property="modifier" />
+        <result column="introduce_id" property="introduceId" />
+        <result column="title" property="title" />
+        <result column="content" property="content" />
+        <result column="order_no" property="orderNo" />
+        <result column="position" property="position" />
+    </resultMap>
+
+</mapper>

+ 17 - 0
icss-service/src/main/resources/mapper/IntroduceInfoMapper.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.diagbot.mapper.IntroduceInfoMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.diagbot.entity.IntroduceInfo">
+        <id column="id" property="id" />
+        <result column="is_deleted" property="isDeleted" />
+        <result column="gmt_create" property="gmtCreate" />
+        <result column="gmt_modified" property="gmtModified" />
+        <result column="creator" property="creator" />
+        <result column="modifier" property="modifier" />
+        <result column="name" property="name" />
+        <result column="remark" property="remark" />
+    </resultMap>
+
+</mapper>

+ 19 - 0
icss-service/src/main/resources/mapper/IntroduceMapMapper.xml

@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.diagbot.mapper.IntroduceMapMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.diagbot.entity.IntroduceMap">
+        <id column="id" property="id" />
+        <result column="is_deleted" property="isDeleted" />
+        <result column="gmt_create" property="gmtCreate" />
+        <result column="gmt_modified" property="gmtModified" />
+        <result column="creator" property="creator" />
+        <result column="modifier" property="modifier" />
+        <result column="question_id" property="questionId" />
+        <result column="introduce_id" property="introduceId" />
+        <result column="type" property="type" />
+        <result column="remark" property="remark" />
+    </resultMap>
+
+</mapper>

+ 17 - 0
icss-service/src/main/resources/mapper/VitalOrderMapper.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.diagbot.mapper.VitalOrderMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.diagbot.entity.VitalOrder">
+        <id column="id" property="id" />
+        <result column="is_deleted" property="isDeleted" />
+        <result column="gmt_create" property="gmtCreate" />
+        <result column="gmt_modified" property="gmtModified" />
+        <result column="creator" property="creator" />
+        <result column="modifier" property="modifier" />
+        <result column="question_id" property="questionId" />
+        <result column="order_no" property="orderNo" />
+    </resultMap>
+
+</mapper>