| | |
| | | package cn.huge.module.cases.domain.po; |
| | | |
| | | import cn.huge.module.sys.dto.FileTypeInfoBaseDTO; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @title: 纠纷当事人信息表数据库对应关系类 |
| | |
| | | */ |
| | | @TableField(value = "party_user_id") |
| | | private String partyUserId; |
| | | |
| | | /** |
| | | * 企业信息编号 |
| | | */ |
| | | @TableField(value = "company_id") |
| | | private String companyId; |
| | | |
| | | /** |
| | | * 当事人地位 |
| | |
| | | */ |
| | | @TableField(value = "orga_type_name") |
| | | private String orgaTypeName; |
| | | |
| | | /** |
| | | * 证件类型 |
| | | */ |
| | | @TableField(value = "certi_type") |
| | | private String certiType; |
| | | |
| | | /** |
| | | * 证件类型名称 |
| | | */ |
| | | @TableField(value = "certi_type_name") |
| | | private String certiTypeName; |
| | | |
| | | /** |
| | | * 证件号码 |
| | |
| | | private String placeAddr; |
| | | |
| | | /** |
| | | * 工作单位编号 |
| | | */ |
| | | @TableField(value = "work_unit_id") |
| | | private String workUnitId; |
| | | |
| | | /** |
| | | * 工作单位 |
| | | */ |
| | | @TableField(value = "work_unit") |
| | |
| | | @TableField(value = "update_time") |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * 附件列表 |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<FileTypeInfoBaseDTO> fileInfoList; |
| | | |
| | | /** |
| | | * 用于小程序新增关联代理人 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String agentCode; |
| | | } |