weaver-hrm-salary/src/com/engine/salary/entity/taxpayment/response/WithholdingFeedbackResponse...

86 lines
1.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.engine.salary.entity.taxpayment.response;
import lombok.Data;
import java.util.List;
/**
* 三方协议缴款反馈
*
* @author chengliming
* @date 2022-12-06 17:25:32
**/
@Data
public class WithholdingFeedbackResponse extends BaseResponse {
/**
* 返回数据
*/
private Body body;
/**
* 反馈结果body
*/
@Data
public static class Body {
/**
* 综合所得
**/
private Feedback zhsdjk;
/**
* 分类所得
**/
private Feedback flsdjk;
/**
* 非居民所得
**/
private Feedback fjmsdjk;
/**
* 限售股所得
**/
private Feedback xsgsdjk;
}
/**
* 反馈结果
**/
@Data
public static class Feedback {
/**
* 申报状态
**/
private String sbzt;
/**
* 扣款状态 0扣款成功1信息校验失败2无欠费记录3扣款失败
**/
private String jkzt;
/**
* 扣款失败原因
**/
private String jksbyy;
/**
* 扣款详情列表
**/
private List<Detail> kkfhlb;
}
@Data
public static class Detail {
/**
* 扣款反馈代码
*/
private String kkfhDm;
/**
* 扣款名称
*/
private String kkfhmc;
/**
* 实缴税额
*/
private String sjse;
}
}