chenjiahe
2021-12-27 89085b3f5d8971a08aac4e0b804e9e505baa3c69
phi_platform_model/src/main/java/com/hx/phip/model/ApplyParameter.java
@@ -34,6 +34,17 @@
    @Column(comment = "企业微信应用秘钥(AES加密)", length = 255, type = MySqlTypeConstant.VARCHAR)
    private String applySecretKey;
    //HIS信息
    @Column(comment = "HIS账号appId", length = 64, type = MySqlTypeConstant.VARCHAR)
    private String hisAppId;
    @Column(comment = "HIS账秘钥", length = 255, type = MySqlTypeConstant.VARCHAR)
    private String hisSecretKey;
    @Column(comment = "HIS账号code", length = 255, type = MySqlTypeConstant.VARCHAR)
    private String hisCode;
    @Column(comment = "备注信息", length = 255, type = MySqlTypeConstant.VARCHAR)
    private String remarkInfo;
    public ApplyParameter() {
    }
@@ -42,8 +53,10 @@
    public static final int TYPE_CORP_MP = 0;
    /**企业微信信息*/
    public static final int TYPE_CORP_COMMUNICATION = 1;
    /**其他*/
    public static final int TYPE_OTHER = 3;
    /**联系我*/
    //public static final int TYPE_CORP_CONTACT = 2;
    /**HIS账号信息*/
    public static final int TYPE_HIS_ACCOUNT = 3;
    public String getCorpId() {
        return corpId;
@@ -116,4 +129,36 @@
    public void setUniqueCode(String uniqueCode) {
        this.uniqueCode = uniqueCode;
    }
    public String getHisAppId() {
        return hisAppId;
    }
    public void setHisAppId(String hisAppId) {
        this.hisAppId = hisAppId;
    }
    public String getHisSecretKey() {
        return hisSecretKey;
    }
    public void setHisSecretKey(String hisSecretKey) {
        this.hisSecretKey = hisSecretKey;
    }
    public String getHisCode() {
        return hisCode;
    }
    public void setHisCode(String hisCode) {
        this.hisCode = hisCode;
    }
    public String getRemarkInfo() {
        return remarkInfo;
    }
    public void setRemarkInfo(String remarkInfo) {
        this.remarkInfo = remarkInfo;
    }
}