namespace CRM.Core.DTO.Ord { /// /// 签订合同返回信息 /// 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; } /// /// 合同恰当性 /// 1、恰当 /// 0、不恰当 /// public int? htflag { get; set; } } }