using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace XhOA.Models.Search
|
{
|
public class Model
|
{
|
public List<string> ProjectBillNos { get; set; }
|
public string CustomerId { get; set; }
|
public string CostomerOrderNo { get; set; }
|
public string OrderNo { get; set; }
|
public string ProjectName { get; set; }
|
public string OrgId { get; set; }
|
public List<string> OldProjectBillNos { get; set; }
|
public string DepartId { get; set; }
|
public string SalesMan { get; set; }
|
public string WriteOffStartDate { get; set; }
|
public string WriteOffEndDate { get; set; }
|
}
|
}
|