doum
21 小时以前 d990f83678892ce9f55a617a572ab246db20ed08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.doumee.core.erp.model.openapi.request;
 
import com.doumee.core.haikang.model.param.BaseRequst;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author 江蹄蹄
 * @date 2023/11/23 14:03
 */
@Data
@ApiModel("停车库接口请求信息")
public class ParkListRequest extends BaseRequst {
    @ApiModelProperty(value = "唯一标识" ,example = "1")
    private Integer id;
    @ApiModelProperty(value = "名称,支持模糊匹配" )
    private String name;
}