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.
|
|
|
|
using Entity.DbModel.Station;
|
|
|
|
|
using Entity.Dto.Req;
|
|
|
|
|
using HybirdFrameworkCore.Entity;
|
|
|
|
|
|
|
|
|
|
namespace Entity.Api.Req;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预约订单分页查询
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class QueryAmtOrderInfoPageReq: QueryPageModel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:客户id
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? CustomerId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:查询时间
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? Time { get; set; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 添加预约订单
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AddAmtOrderInfoReq : AmtOrderInfo
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 取消预约单
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DeleteAmtOrderInfoReq : BaseIdReq
|
|
|
|
|
{
|
|
|
|
|
}
|