| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.ydtech.modules.protocol.entity.vo;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Data;
- import java.util.List;
- @Data
- public class TaxSourceVo {
- /**
- * 保险公司id
- */
- @TableField(value = "ins_company_id")
- private String insCompanyId;
- /**
- * 保险公司名称
- */
- @TableField(value = "ins_company_name")
- private String insCompanyName;
- /**
- * 税源配置信息
- */
- private List<AgreementTax> agreementTaxList;
- /**
- * 税源排除的部门
- */
- private String[] agreementTaxExcludeDeptList;
- /**
- * 税源排除的车牌号
- */
- private String[] agreementTaxExcludeLicenseList;
- /**
- * 税源配置信息
- */
- @Data
- public static class AgreementTax{
- private String agreementId;
- private String isTaxSource;
- /**
- * 车牌号
- */
- private String license;
- }
- @Data
- public static class AgreementTaxExclude{
- private String excludeInfo;
- }
- }
|