Commit d153a998 authored by tianbo's avatar tianbo

feat(common): 添加DPFilterParamBaseDto数据传输对象

- 新增区域编码字段cityCode,用于指定区域 - 添加单位编码列表companyCodes,支持多单位筛选 - 添加NotBlank注解确保区域编码非空校验
parent e008cfd4
package com.yeejoin.amos.boot.module.common.api.dto;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import java.util.List;
@Data
public class DPFilterParamBaseDto {
/**
* 区域
*/
@NotBlank(message = "区域编码不能为空!")
private String cityCode;
/**
* 区域下的所有单位监管、行政审批(地市、区县级)
*/
private List<String> companyCodes;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment