| | |
| | | @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() { |
| | | } |
| | | |
| | |
| | | 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; |
| | |
| | | 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; |
| | | } |
| | | } |