59 lines
1.1 KiB
Java
59 lines
1.1 KiB
Java
package com.ruoyi.wisdomarbitrate.domain;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@Builder
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class CaseAttach {
|
|
/**
|
|
* 附件id
|
|
*/
|
|
private Integer annexId;
|
|
/**
|
|
* 案件申请id
|
|
*/
|
|
private Long caseAppliId;
|
|
/**
|
|
* 案件记录id
|
|
*/
|
|
private Long caseAppliLogId;
|
|
/**
|
|
* 附件名称
|
|
*/
|
|
private String annexName;
|
|
/**
|
|
* 附件路径
|
|
*/
|
|
private String annexPath;
|
|
/**
|
|
* 附件类型,立案申请书(1)、申请人证据材料(2)、仲裁文书(3)、案件视频(4)、身份证件(5)、被申请人证据材料 (6)、庭审笔录(7)、缴费凭证(8)'
|
|
*/
|
|
private Integer annexType;
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String note;
|
|
/**
|
|
* 用户id
|
|
*/
|
|
private Long userId;
|
|
/**
|
|
* 用户账户
|
|
*/
|
|
private String userName;
|
|
/**
|
|
* 印章状态(0未启用,1已启用)
|
|
*/
|
|
private Integer sealStatus;
|
|
/**
|
|
* 是否是证据上传,0-否,1-是
|
|
*/
|
|
private Integer isBatchUpload;
|
|
|
|
}
|