33 lines
854 B
C#
33 lines
854 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WX.CRM.Common.Layui;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
|
|
public class OrderRefundSelectDto
|
|
{
|
|
public Laypage pager { get; set; }
|
|
|
|
public string resId { get; set; }
|
|
public string UMID { get; set; }
|
|
public decimal? orderId { get; set; }
|
|
public string companyCode { get; set; }
|
|
public string channel { get; set; }
|
|
public decimal? price { get; set; }
|
|
public decimal? auditStatus { get; set; }
|
|
public DateTime? sTime { get; set; }
|
|
public DateTime? eTime { get; set; }
|
|
public int? isacturalrefund { get; set; }
|
|
|
|
/// <summary>
|
|
/// 取消退款意向
|
|
/// </summary>
|
|
public int? innamelist { get; set; }
|
|
|
|
}
|
|
}
|