21 lines
544 B
C#
21 lines
544 B
C#
namespace CRM.Core.DTO.Ord
|
|
{
|
|
/// <summary>
|
|
/// 签订合同返回信息
|
|
/// </summary>
|
|
public class contractSignRet
|
|
{
|
|
public string orderid { get; set; }
|
|
public string htid { get; set; }
|
|
public string contractkey { get; set; }
|
|
public string contracttime { get; set; }
|
|
public decimal? RefundPrice { get; set; }
|
|
/// <summary>
|
|
/// 合同恰当性
|
|
/// 1、恰当
|
|
/// 0、不恰当
|
|
/// </summary>
|
|
public int? htflag { get; set; }
|
|
}
|
|
}
|