陶杰
2024-10-22 c144a01a7fff4e9bd169eb9d03b6ea58bc8bafb6
1
2
3
4
5
6
7
8
9
10
11
package com.mzl.flower.dto.request.transport;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class TransportQueryDTO {
    @ApiModelProperty(value = "名称")
    private String name;
 
}