ComplianceServer/oldcode/Core.DTO/Ord/supplyOrderRes.cs

27 lines
523 B
C#

namespace CRM.Core.DTO.Ord
{
/// <summary>
/// 补单接口
/// </summary>
public class supplyOrderRes
{
public string orderid { get; set; }
public string mb { get; set; }
public string payno { get; set; }
public decimal payprice { get; set; }
public int paytype { get; set; }
public string paymark { get; set; }
public string name { get; set; }
public string idcard { get; set; }
public int ispdf { get; set; }
}
}