Browse Source

代码修改

LAPTOP-KB9HII50\70708 10 months ago
parent
commit
ab99ecaf8b

+ 7 - 0
common/common-entity/src/db/2024.sql

@ -38,6 +38,8 @@ INSERT INTO `base`.`wx_wechat` (`id`, `name`, `token`, `encoding_aes_key`, `enc_
INSERT INTO `base`.`oauth_wlyy_config` (`id`, `app_id`, `app_secret`, `token_url`, `url`, `remark`) VALUES
    ('findThirdScreenList', '019bd04d-3cb2-433f-a530-03f0cdb083e5', '08cc3ec2-736b-4732-a8f0-f99eb6f9d311', 'https://www.xmtyw.cn/wlyytest/gc/accesstoken', 'https://www.xmtyw.cn/wlyytest/wlyygc/tongan/hospital/findThirdScreenList', '厦门I健康获取同安筛查记录');
@ -352,3 +354,8 @@ INSERT INTO `base`.`wlyy_job_config_new` (`id`, `job_name`, `job_info`, `job_typ
INSERT INTO `base`.`dimension_quota` (`id`, `quota_code`, `dimension_code`, `dict_sql`, `convert_clazz`, `sort`, `key`)
VALUES ('64', '78', '8', 'select s.dict_code code,s.dict_value name from wlyy_hospital_sys_dict s where  s.dict_name=\'OUT_PATIENT_STATUS\'', NULL, '2', 'slaveKey2');
INSERT INTO `oauth_wlyy_config` (`id`, `app_id`, `app_secret`, `token_url`, `url`, `remark`) VALUES
    ('findThirdScreenList', '019bd04d-3cb2-433f-a530-03f0cdb083e5', '08cc3ec2-736b-4732-a8f0-f99eb6f9d311', 'https://www.xmtyw.cn/wlyytest/gc/accesstoken', 'https://www.xmtyw.cn/wlyytest/wlyygc/tongan/hospital/findThirdScreenList', '厦门I健康获取同安筛查记录');
INSERT INTO `oauth_wlyy_config` (`id`, `app_id`, `app_secret`, `token_url`, `url`, `remark`) VALUES
    ('addSurveyThird', '019bd04d-3cb2-433f-a530-03f0cdb083e5', '08cc3ec2-736b-4732-a8f0-f99eb6f9d311', 'https://www.xmtyw.cn/wlyytest/gc/accesstoken', 'https://www.xmtyw.cn/wlyytest/wlyygc/tongan/hospital/addSurveyThird', '厦门I健康新增三院疾病筛查管理记录');

+ 1 - 2
common/common-entity/src/main/java/com/yihu/jw/entity/base/sms/SmsTemplateDO.java

@ -1,6 +1,5 @@
package com.yihu.jw.entity.base.sms;
import com.yihu.jw.entity.UuidIdentityEntity;
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
import javax.persistence.Column;
@ -33,7 +32,7 @@ public class SmsTemplateDO extends UuidIdentityEntityWithOperator {
            case 0:
                return Type.register;
            case 1:
                return Type.register;
                return Type.login;
            case 2:
                return Type.resetPassword;
            case 3:

+ 111 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/hospital/survey/BaseDiseaseSurveyDO.java

@ -0,0 +1,111 @@
package com.yihu.jw.entity.hospital.survey;
import com.yihu.jw.entity.UuidIdentityEntityWithCreateTime;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
/**
 * 疾病筛查关联表
 * Created by yeshijie on 2024/8/19.
 */
@Entity
@Table(name = "base_disease_survey")
public class BaseDiseaseSurveyDO extends UuidIdentityEntityWithCreateTime {
    private String name;//病种名称
    private String comment;//病种描述
    private String dept;//关联科室
    private String deptName;//
    private String doctor;//关联医生
    private String doctorName;//
    private String status;//使用状态 1启用 0禁用
    private String statusName;//使用状态 1启用 0禁用
    private String surveyCode;//关联厦门i健康筛查code
    private String surveyTitle;//关联厦门i健康筛查名称
    @Column(name = "name")
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    @Column(name = "comment")
    public String getComment() {
        return comment;
    }
    public void setComment(String comment) {
        this.comment = comment;
    }
    @Column(name = "dept")
    public String getDept() {
        return dept;
    }
    public void setDept(String dept) {
        this.dept = dept;
    }
    @Column(name = "dept_name")
    public String getDeptName() {
        return deptName;
    }
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
    @Column(name = "doctor")
    public String getDoctor() {
        return doctor;
    }
    public void setDoctor(String doctor) {
        this.doctor = doctor;
    }
    @Column(name = "doctor_name")
    public String getDoctorName() {
        return doctorName;
    }
    public void setDoctorName(String doctorName) {
        this.doctorName = doctorName;
    }
    @Column(name = "status")
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    @Column(name = "survey_code")
    public String getSurveyCode() {
        return surveyCode;
    }
    public void setSurveyCode(String surveyCode) {
        this.surveyCode = surveyCode;
    }
    @Column(name = "survey_title")
    public String getSurveyTitle() {
        return surveyTitle;
    }
    public void setSurveyTitle(String surveyTitle) {
        this.surveyTitle = surveyTitle;
    }
    @Transient
    public String getStatusName() {
        return statusName;
    }
    public void setStatusName(String statusName) {
        this.statusName = statusName;
    }
}