using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Edge.Core.Domain.FccOrderInfo.Input
{
///
/// fcc 前端订单页面查询过滤对象
///
public class OrderInfoPageInput
{
///
/// 页码
///
public int page { get; set; }
///
/// 页数
///
public int pageSize { get; set; }
///
/// 油品名
///
public string? oilName { get; set; }
///
/// 枪号
///
public int? nozzleNum { get; set; }
///
/// 开始检索时间
///
public DateTime? startCheckTime { get; set; }
///
/// 介绍检索时间
///
public DateTime? endCheckTime { get; set; }
///
/// 支付类型
///
public long? paymentType { get; set; }
///
/// 手机号或支付用户名
///
public string? phoneNumberOruserName { get; set; }
}
}