PiccOverseasOrder.java
705 Bytes
package com.lhcredit.project.webbusiness.domain;
import lombok.Data;
@Data
public class PiccOverseasOrder {
private String orderNum;//订单号
private String enterpriseName;//注册名称
private String country;//国别
private String address;//地址
private String regNo;//注册号
private String taxNo;//税号
private String affiliation;//归属分公司
private String reportType;//报告类型(0-简易报告;1-标准报告)
// private String orderType;//订单类型(0-普通;1-加急;2-特急)
private String code;
private String msg;
private String limitNum;//限额号
private String affiliationAll;//完整组织架构
}