using System; using System.Collections.Generic; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Wx { public interface IWX_SZZYORDERPAY : IRepository { List GetPays(int orderId); } public class OrderPayView { public List OrderPays { get; set; } } public class OrderPay { public decimal OrderId { get; set; } public decimal ProductId { get; set; } public string ProductName { get; set; } public decimal PayType { get; set; } public decimal PayPrice { get; set; } public string PayName { get; set; } public decimal AuditStatus { get; set; } public DateTime Ctime { get; set; } public string TradeNo { get; set; } public string Link { get; set; } public string Qrcode { get; set; } public string MchId { get; set; } } }