TG.WXCRM.V4/IBLL/Wx/IWX_SZZYORDERPAY.cs

33 lines
915 B
C#

using System;
using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Wx
{
public interface IWX_SZZYORDERPAY : IRepository<WX_SZZYORDERPAY>
{
List<OrderPay> GetPays(int orderId);
}
public class OrderPayView
{
public List<WX_SZZYORDERPAY> 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; }
}
}