37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class OrderCloseDto
|
|
{
|
|
public string OrderId { get; set; }
|
|
}
|
|
public class OrderPayDto
|
|
{
|
|
public int orderid { get; set; }
|
|
public decimal needpay { get; set; }
|
|
public int paytype { 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 string companycode { get; set; }
|
|
public string deposit { get; set; }
|
|
public string tradeno { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
public string deptcode { get; set; }
|
|
}
|
|
public class OrderPayDtoMore
|
|
{
|
|
|
|
public int[] paytype { 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; }
|
|
}
|
|
}
|