PiccErrOrder.java
1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.lhcredit.project.business.piccErrOrder.domain;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.lhcredit.framework.web.domain.BaseEntity;
/**
* 人保海外下单异常表 picc_err_order
*
* @author lhcredit
* @date 2025-05-08
*/
@Data
@ApiModel(value = "人保海外下单异常")
public class PiccErrOrder extends BaseEntity{
private static final long serialVersionUID=1L;
/** */
@ApiModelProperty(value = "")
private Integer id;
/** 订单号 */
@ApiModelProperty(value = "订单号")
private String orderNum;
/** 注册名称 */
@ApiModelProperty(value = "注册名称")
private String enterpriseName;
/** 国别 */
@ApiModelProperty(value = "国别")
private String country;
/** 地址 */
@ApiModelProperty(value = "地址")
private String address;
/** 注册号 */
@ApiModelProperty(value = "注册号")
private String regNo;
/** 税号 */
@ApiModelProperty(value = "税号")
private String taxNo;
/** 归属分公司 */
@ApiModelProperty(value = "归属分公司")
private String affiliation;
/** 报告类型(0-简易报告;1-标准报告) */
@ApiModelProperty(value = "报告类型(0-简易报告;1-标准报告)")
private String reportType;
/** 订单类型(0-普通;1-加急;2-特急) */
@ApiModelProperty(value = "订单类型(0-普通;1-加急;2-特急)")
private String orderType;
/** 数据状态 0:未处理 1:已处理 */
@ApiModelProperty(value = "数据状态 0:未处理 1:已处理 2:已取消")
private String status;
private String win;
private String city;
private String remark;
private String limitnum;
private String affiliationAll;//完整组织架构
}