销项合并:开具接口实体新加字段

beta-prop
dongxiaoke 2 years ago
parent 6eab638f0b
commit 2846de3d31
  1. 23
      jianshui-invoice/src/main/java/com/jianshui/invoice/domain/BillInfo.java

@ -249,66 +249,89 @@ public class BillInfo extends BaseEntity
/** 全电新增字段 **/ /** 全电新增字段 **/
private String async; private String async;
// TODO: 2023/3/30 后期看看需不需要这部分存库
@TableField(exist=false)
@ApiModelProperty(value = "办税人身份证号") @ApiModelProperty(value = "办税人身份证号")
private String bsrysfzjhm; private String bsrysfzjhm;
@TableField(exist=false)
@ApiModelProperty(value = "*地区编码(参考码表)") @ApiModelProperty(value = "*地区编码(参考码表)")
private String dqbm; private String dqbm;
@TableField(exist=false)
@ApiModelProperty(value = "lzfpkj") @ApiModelProperty(value = "lzfpkj")
private String serviceId; private String serviceId;
@TableField(exist=false)
@ApiModelProperty(value = "放弃享受减按1%征收率原因") @ApiModelProperty(value = "放弃享受减按1%征收率原因")
private String kjlx; private String kjlx;
@TableField(exist=false)
@ApiModelProperty(value = "出行人") @ApiModelProperty(value = "出行人")
private String cxr; private String cxr;
@TableField(exist=false)
@ApiModelProperty(value = "出行人证件类型") @ApiModelProperty(value = "出行人证件类型")
private String cxrzjlx; private String cxrzjlx;
@TableField(exist=false)
@ApiModelProperty(value = "出行人证件号码") @ApiModelProperty(value = "出行人证件号码")
private String cxrzjhm; private String cxrzjhm;
@TableField(exist=false)
@ApiModelProperty(value = "出行日期") @ApiModelProperty(value = "出行日期")
private String cxrq; private String cxrq;
@TableField(exist=false)
@ApiModelProperty(value = "出发地") @ApiModelProperty(value = "出发地")
private String cfd; private String cfd;
@TableField(exist=false)
@ApiModelProperty(value = "到达地") @ApiModelProperty(value = "到达地")
private String ddd; private String ddd;
@TableField(exist=false)
@ApiModelProperty(value = "交通工具类型") @ApiModelProperty(value = "交通工具类型")
private String jtgjlx; private String jtgjlx;
@TableField(exist=false)
@ApiModelProperty(value = "等级") @ApiModelProperty(value = "等级")
private String dengj; private String dengj;
@TableField(exist=false)
@ApiModelProperty(value = "货物运输服务") @ApiModelProperty(value = "货物运输服务")
private String hwysfw; private String hwysfw;
@TableField(exist=false)
@ApiModelProperty(value = "起运地") @ApiModelProperty(value = "起运地")
private String qyd; private String qyd;
@TableField(exist=false)
@ApiModelProperty(value = "运输工具号牌") @ApiModelProperty(value = "运输工具号牌")
private String ysgjhp; private String ysgjhp;
@TableField(exist=false)
@ApiModelProperty(value = "运输工具种类") @ApiModelProperty(value = "运输工具种类")
private String ysgjzl; private String ysgjzl;
@TableField(exist=false)
@ApiModelProperty(value = "运输货物名称") @ApiModelProperty(value = "运输货物名称")
private String yshwmc; private String yshwmc;
@TableField(exist=false)
@ApiModelProperty(value = "含税标志 1-不含税 2-含税") @ApiModelProperty(value = "含税标志 1-不含税 2-含税")
private String hsbz; private String hsbz;
@TableField(exist=false)
@ApiModelProperty(value = "放弃享受减按1%征收率原因") @ApiModelProperty(value = "放弃享受减按1%征收率原因")
private String kjly; private String kjly;
@TableField(exist=false)
@ApiModelProperty(value = "附加信息名称") @ApiModelProperty(value = "附加信息名称")
private String fjxxmc; private String fjxxmc;
@TableField(exist=false)
@ApiModelProperty(value = "附加信息内容") @ApiModelProperty(value = "附加信息内容")
private String fjxxnr; private String fjxxnr;

Loading…
Cancel
Save