TaxSourceVo.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.ydtech.modules.protocol.entity.vo;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import lombok.Data;
  4. import java.util.List;
  5. @Data
  6. public class TaxSourceVo {
  7. /**
  8. * 保险公司id
  9. */
  10. @TableField(value = "ins_company_id")
  11. private String insCompanyId;
  12. /**
  13. * 保险公司名称
  14. */
  15. @TableField(value = "ins_company_name")
  16. private String insCompanyName;
  17. /**
  18. * 税源配置信息
  19. */
  20. private List<AgreementTax> agreementTaxList;
  21. /**
  22. * 税源排除的部门
  23. */
  24. private String[] agreementTaxExcludeDeptList;
  25. /**
  26. * 税源排除的车牌号
  27. */
  28. private String[] agreementTaxExcludeLicenseList;
  29. /**
  30. * 税源配置信息
  31. */
  32. @Data
  33. public static class AgreementTax{
  34. private String agreementId;
  35. private String isTaxSource;
  36. /**
  37. * 车牌号
  38. */
  39. private String license;
  40. }
  41. @Data
  42. public static class AgreementTaxExclude{
  43. private String excludeInfo;
  44. }
  45. }