java110
2021-09-04 576c52d8d8e6fb1e738380cc5fc101a6a2b0b3a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * Copyright 2017-2020 吴学文 and java110 team.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.java110.job.adapt.hcGov;
 
 
import com.alibaba.fastjson.JSONObject;
import com.java110.core.factory.AuthenticationFactory;
 
/**
 * HCGOV 政务常量类
 * 接口协议地址: https://gitee.com/java110/microCommunityInformation/tree/master/info-doc#1%E6%A5%BC%E6%A0%8B%E4%B8%8A%E4%BC%A0
 *
 * @desc add by 吴学文 9:49
 */
public class HcGovConstant {
 
    public static final int CODE_OK = 200; // 成功
 
 
    public static final String GOV_DOMAIN = "DOMAIN_GOV"; // 政务域
    public static final String COMMUNITY_SECURE = "978984641654"; // 小区密钥
    public static final String FLOOR_TYPE = "FLOOR_TYPE"; // 楼栋类型
    public static final String GOV_TOPIC = "hcGov"; // 楼栋类型
    public static final String GOV_SWITCH = "GOV_SWITCH"; // 推送政务开关
 
 
    //政务小区编码/楼栋外部便阿门/房屋外部编码/业主外部编码 SPEC_CD
    public static final String EXT_COMMUNITY_ID = "9329000004";
 
    //添加楼栋
    public static final String ADD_FLOOR_ACTION = "ADD_FLOOR";
    //修改楼栋
    public static final String EDIT_FLOOR_ACTION = "EDIT_FLOOR";
    //添加房屋
    public static final String ADD_ROOM_ACTION = "ADD_ROOM";
    //修改房屋
    public static final String EDIT_ROOM_ACTION = "EDIT_ROOM";
 
    public static void generatorProducerSign(JSONObject header, JSONObject body, String code) {
 
        String newSign = AuthenticationFactory.md5(header.getString("tranId") + header.getString("reqTime") + body.toJSONString() + code).toLowerCase();
        header.put("sign",newSign);
    }
 
}