60 lines
1.3 KiB
C#
60 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
|
|
public class RefundContractInfoDto
|
|
{
|
|
public string cancelHtUrl { get; set; }
|
|
public int showCancelUrl { get; set; }
|
|
|
|
public string untkpdf { get; set; }
|
|
|
|
public bool showCancle { get; set; }
|
|
|
|
public string tkpdf { get; set; }
|
|
|
|
|
|
public string status { get; set; }
|
|
public string idCardName { get; set; }
|
|
|
|
public string idCardNo { get; set; }
|
|
|
|
public string idCardTypeDescribe { get; set; }
|
|
|
|
public string cardFrontFile { get; set; }
|
|
|
|
public string cardReverseSideFile { get; set; }
|
|
|
|
public string htUrl { get; set; }
|
|
|
|
public string contract { get; set; }
|
|
|
|
public int? contractstatus { get; set; }
|
|
|
|
public string contractKey { get; set; }
|
|
|
|
public int? IdCardStatus { get; set; }
|
|
|
|
public string IdCardRemark { get; set; }
|
|
|
|
public int orderId { get; set; }
|
|
|
|
public string errInfo { get; set; }
|
|
}
|
|
|
|
public class RefundContractSeelctDto
|
|
{
|
|
public int orderId { get; set; }
|
|
|
|
public int id { get; set; }
|
|
|
|
public int Eid { get; set; }
|
|
public string UserName { get; set; }
|
|
}
|
|
}
|