You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.4 KiB
70 lines
1.4 KiB
using System.ComponentModel.DataAnnotations;
|
|
using Entity.DbModel.Station;
|
|
using Entity.DbModel.System.App;
|
|
using HybirdFrameworkCore.Entity;
|
|
|
|
namespace Entity.Dto.Req;
|
|
|
|
/// <summary>
|
|
/// 车队分页查询参数
|
|
/// </summary>
|
|
public class PageVehicleReq : QueryPageModel
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:车牌号
|
|
|
|
|
|
/// </summary>
|
|
public virtual string? VehicleNo {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:车辆mac
|
|
|
|
/// </summary>
|
|
public virtual string? VehicleMac {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:车辆vin码
|
|
|
|
/// </summary>
|
|
public virtual string? VehicleVin {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:公司
|
|
|
|
/// </summary>
|
|
public virtual string? Company {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:部门
|
|
|
|
/// </summary>
|
|
public virtual string? Departments {get;set;}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 增加车队
|
|
/// </summary>
|
|
public class AddVehicleReq : BaseVehicle
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 修改车队
|
|
/// </summary>
|
|
public class UpdateVehicleReq : AddVehicleReq
|
|
{
|
|
[Required]
|
|
public int Id {get;set;}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 删除车队
|
|
/// </summary>
|
|
public class DeleteVehicleReq : BaseIdReq
|
|
{
|
|
} |