别名的线路查询修改
parent
83306e772d
commit
dfe53eeed8
@ -0,0 +1,17 @@
|
||||
package com.shxy.xymanager_common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "线路杆塔查询", description = "线路杆塔查询")
|
||||
public class LineAndGtVo {
|
||||
|
||||
@ApiModelProperty(value = "查询类型", example = "1--线路 2--杆塔")
|
||||
private Integer type;
|
||||
|
||||
@ApiModelProperty(value = "编号", example = "123455")
|
||||
private Integer id;
|
||||
|
||||
}
|
Loading…
Reference in New Issue