168 lines
4.4 KiB
Java
168 lines
4.4 KiB
Java
package com.engine.salary.constant;
|
|
|
|
/**
|
|
* 神州云合api常量
|
|
*
|
|
* @author chengliming
|
|
* @date 2022-10-18 11:05 AM
|
|
**/
|
|
public class SzyhApiConstant {
|
|
|
|
/**
|
|
* 接口HOST
|
|
*/
|
|
public static final String HOST_URL = "https://ddapi.bigfintax.com/";
|
|
|
|
/**
|
|
* 测试接口host
|
|
*/
|
|
public static final String TEST_HOST_URL = "https://uat-ddapi.bigfintax.com/";
|
|
|
|
/**
|
|
* 企业注册接口
|
|
*/
|
|
public static final String GET_REGISTER_INFO_URL = "gateway/iit/declare/getCompanyRegisterInfo";
|
|
|
|
/**
|
|
* 校验密码接口
|
|
*/
|
|
public static final String CHECK_PASSWORD_URL = "gateway/iit/check/checkPassword";
|
|
|
|
/**
|
|
* 人员专项附加扣除信息查询
|
|
*/
|
|
public static final String QUERY_SPECIAL_AMOUNT = "gateway/iit/special/querySpecialAmount";
|
|
|
|
/**
|
|
* 人员专项附加扣除信息查询反馈
|
|
*/
|
|
public static final String GET_QUERY_SPECIAL_AMOUNT_FEEDBACK = "gateway/iit/special/getQuerySpecialAmountFeedback";
|
|
|
|
/**
|
|
* 报送人员接口
|
|
*/
|
|
public static final String DECLARE_EMPLOYEE_INFO = "gateway/iit/declare/declareEmployeeInfo";
|
|
|
|
/**
|
|
* 报送人员获取反馈接口
|
|
*/
|
|
public static final String DECLARE_EMPLOYEE_INFO_FEEDBACK = "gateway/iit/declare/getEmployeeInfoFeedback";
|
|
|
|
/**
|
|
* 个税申报
|
|
*/
|
|
public static final String DECLARE_TAX = "gateway/iit/report/send";
|
|
|
|
/**
|
|
* 获取个税申报反馈
|
|
*/
|
|
public static final String DECLARE_TAX_FEEDBACK = "gateway/iit/report/getFeedback";
|
|
|
|
/**
|
|
* 作废申报
|
|
*/
|
|
public static final String CANCEL_DECLARE = "gateway/iit/report/cancel";
|
|
|
|
/**
|
|
* 获取作废申报反馈
|
|
*/
|
|
public static final String CANCEL_DECLARE_FEEDBACK = "gateway/iit/report/getCancelFeedback";
|
|
|
|
/**
|
|
* 更正申报
|
|
*/
|
|
public static final String UPDATE_DECLARE = "/gateway/iit/report/correct";
|
|
|
|
/**
|
|
* 税局端申报状态查询
|
|
*/
|
|
public static final String QUERY_DECLARE_STATUS = "/gateway/iit/report/queryDeclarationRecord";
|
|
|
|
/**
|
|
* 企业申报数据明细查询
|
|
*/
|
|
public static final String QUERY_COMPANY_INCOMES = "/gateway/iit/report/getCompanyIncomes";
|
|
|
|
/**
|
|
* 获取流量统计情况
|
|
*/
|
|
public static final String QUERY_ACCOUNT_BALANCE = "gateway/iit/statistic/queryAccountBalance";
|
|
|
|
/**
|
|
* 查询税号流量明细
|
|
*/
|
|
public static final String QUERY_DETAILS_BY_TAX_NUMBER = "gateway/iit/statistic/queryDetailsByTaxNumber";
|
|
|
|
/**
|
|
* 获取企业三方信息
|
|
*/
|
|
public static final String QUERY_AGREEMENT = "gateway/iit/payment/queryAgreement";
|
|
|
|
/**
|
|
* 获取企业三方信息查询反馈
|
|
*/
|
|
public static final String GET_AGREEMENT_QUERY_FEEDBACK = "gateway/iit/payment/getAgreementQueryFeedback";
|
|
|
|
/**
|
|
* 三方协议缴款
|
|
*/
|
|
public static final String DECLARE_WITH_HOLDING = "gateway/iit/payment/declareWithholding";
|
|
|
|
/**
|
|
* 三方协议缴款反馈
|
|
*/
|
|
public static final String DECLARE_WITH_HOLDING_FEEDBACK = "gateway/iit/payment/getWithholdingFeedback";
|
|
|
|
/**
|
|
* 缴款凭证
|
|
*/
|
|
public static final String WITHHOLDING_VOUCHER = "gateway/iit/payment/withholdingVoucher";
|
|
|
|
/**
|
|
* 缴款凭证反馈
|
|
*/
|
|
public static final String WITHHOLDING_VOUCHER_FEEDBACK = "gateway/iit/payment/getWithholdingVoucherFeedback";
|
|
|
|
/**
|
|
* 缴款凭证作废
|
|
*/
|
|
public static final String CANCEL_WITHHOLDING_VOUCHER = "gateway/iit/payment/cancelWithholdingVoucher";
|
|
/**
|
|
* 完税证明
|
|
*/
|
|
public static final String GET_WITHHELD_VOUCHER = "gateway/iit/payment/getWithheldVoucher";
|
|
/**
|
|
* 刷新缴款状态
|
|
*/
|
|
public static final String GET_SYNC_WITHHOLDING_FEEDBACK = "gateway/iit/payment/getSyncWithholdingFeedback";
|
|
|
|
|
|
/**
|
|
* 请求成功状态码
|
|
*/
|
|
public static final String SUCCESS_CODE = "00000000";
|
|
|
|
/**
|
|
* 处理中状态码
|
|
*/
|
|
public static final String HANDLING_CODE = "000004";
|
|
|
|
/**
|
|
* 企业服务不可用
|
|
*/
|
|
public static final String APP_DISABLED_CODE = "990006";
|
|
|
|
/**
|
|
* 企业服务已停用
|
|
*/
|
|
public static final String APP_PAUSED_CODE = "990007";
|
|
/**
|
|
* 错误码
|
|
*/
|
|
public static final String ERROR_CODE = "ITGCUS0002";
|
|
/**
|
|
* 无缴款凭证
|
|
*/
|
|
public static final String NONE_VOUCHER_CODE = "200028";
|
|
}
|