using Infrastructure;
using OpenAuth.App.Request;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.BiddingInfoManager.Request
{
public class BiddingInfoReq
{
///
/// 页码
///
/// 1
public int page { get; set; }
///
/// 每页条数
///
/// 10
public int limit { get; set; }
public int? year { get; set; }
///
/// Desc:项目名称
/// Default:
/// Nullable:True
///
public string projectname { get; set; }
///
/// Desc:项目编号
/// Default:
/// Nullable:True
///
public string projectnum { get; set; }
///
/// Desc:招标类型(对应字典中的值)
/// Default:
/// Nullable:True
///
public string biddingtype { get; set; }
///
/// Desc:招标形式(对应字典中的值)
/// Default:
/// Nullable:True
///
public string biddingform { get; set; }
///
/// Desc:当前状态
/// Default:
/// Nullable:True
///
public string nowstatus { get; set; }
public BiddingInfoReq()
{
page = 1;
limit = 10;
}
}
}