You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.supervision.police.vo;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 创建目录请求参数
|
|
*/
|
|
@Data
|
|
public class EvidenceDirectoryReqVO {
|
|
/**
|
|
* 分类id
|
|
*/
|
|
private String caseId;
|
|
|
|
/**
|
|
* 目录名
|
|
*/
|
|
private String directoryName;
|
|
|
|
/**
|
|
* 分类id
|
|
*/
|
|
private String categoryId;
|
|
|
|
|
|
/**
|
|
* 提供人
|
|
*/
|
|
private String provider;
|
|
}
|