8 changed files with 153 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
namespace BBWY.Client.Models |
||||
|
{ |
||||
|
public class AliPayBill : PayBill |
||||
|
{ |
||||
|
public AliPayBill() |
||||
|
{ |
||||
|
PayBillType = PayBillType.AliPay; |
||||
|
} |
||||
|
|
||||
|
public override string GetMerchantOrderNo() |
||||
|
{ |
||||
|
return base.GetMerchantOrderNo(); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,61 @@ |
|||||
|
using System; |
||||
|
|
||||
|
namespace BBWY.Client.Models |
||||
|
{ |
||||
|
public class PayBill |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 账单流水号
|
||||
|
/// </summary>
|
||||
|
public string PayBillNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 支付时间
|
||||
|
/// </summary>
|
||||
|
public DateTime? PayTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 账单类型
|
||||
|
/// </summary>
|
||||
|
public PayBillType PayBillType { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 商家订单号
|
||||
|
/// </summary>
|
||||
|
public string MerchantOrderNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 商品名称
|
||||
|
/// </summary>
|
||||
|
public string ProductName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 对方账户
|
||||
|
/// </summary>
|
||||
|
public string OppositeAccount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 支出金额
|
||||
|
/// </summary>
|
||||
|
public decimal ExpenditureAmount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 归属店铺
|
||||
|
/// </summary>
|
||||
|
public string BelongShop { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 错误信息
|
||||
|
/// </summary>
|
||||
|
public string ErrorMessage { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 提取商家订单号
|
||||
|
/// </summary>
|
||||
|
/// <returns></returns>
|
||||
|
public virtual string GetMerchantOrderNo() |
||||
|
{ |
||||
|
return MerchantOrderNo; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,10 @@ |
|||||
|
namespace BBWY.Client.Models |
||||
|
{ |
||||
|
public class WXPayBill : PayBill |
||||
|
{ |
||||
|
public WXPayBill() |
||||
|
{ |
||||
|
PayBillType = PayBillType.WeiXin; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,11 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.Client.ViewModels |
||||
|
{ |
||||
|
public class ProcurementAuditViewModel : BaseVM |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
<Page x:Class="BBWY.Client.Views.FinancialTerminal.ProcurementAudit" |
||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
|
xmlns:local="clr-namespace:BBWY.Client.Views.FinancialTerminal" |
||||
|
mc:Ignorable="d" |
||||
|
d:DesignHeight="450" d:DesignWidth="800" |
||||
|
Title="ProcurementAudit"> |
||||
|
|
||||
|
<Grid> |
||||
|
|
||||
|
</Grid> |
||||
|
</Page> |
@ -0,0 +1,26 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
using System.Windows; |
||||
|
using System.Windows.Controls; |
||||
|
using System.Windows.Data; |
||||
|
using System.Windows.Documents; |
||||
|
using System.Windows.Input; |
||||
|
using System.Windows.Media; |
||||
|
using System.Windows.Media.Imaging; |
||||
|
using System.Windows.Navigation; |
||||
|
using System.Windows.Shapes; |
||||
|
|
||||
|
namespace BBWY.Client.Views.FinancialTerminal |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// ProcurementAudit.xaml 的交互逻辑
|
||||
|
/// </summary>
|
||||
|
public partial class ProcurementAudit : Page |
||||
|
{ |
||||
|
public ProcurementAudit() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue