调整
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.gxwebsoft.tower.param;
|
||||
|
||||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||||
import com.gxwebsoft.common.core.web.BaseParam;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 车辆调度查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-10-31 12:05:49
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerWorksheetCarDispatchParam对象", description = "车辆调度查询参数")
|
||||
public class TowerWorksheetCarDispatchParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer carDispatchId;
|
||||
|
||||
private String name;
|
||||
|
||||
private String carPlate;
|
||||
|
||||
private String phone;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
@ApiModelProperty(value = "项目联系人电话")
|
||||
private String contactPhone;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user