35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class OrderDepositDto
|
|
{
|
|
public long id { get; set; }
|
|
public string orderid { get; set; }
|
|
public string resid { get; set; }
|
|
public int paytype { get; set; }
|
|
public string paytypename { get; set; }
|
|
public DateTime? paydate { get; set; }
|
|
public decimal payprice { get; set; }
|
|
public string payname { get; set; }
|
|
public string remark { get; set; }
|
|
public string payno { get; set; }
|
|
public int isuse { get; set; }
|
|
public string companycode { get; set; }
|
|
public int? channel { get; set; }
|
|
public string tradeno { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
/// <summary>
|
|
/// 部门编码
|
|
/// </summary>
|
|
public string deptcode { get; set; }
|
|
}
|
|
|
|
public class UseOrderDepositDto
|
|
{
|
|
public int orderid { get; set; }
|
|
public string deposit { get; set; }
|
|
}
|
|
}
|