You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;using System.ComponentModel.DataAnnotations.Schema;using System.Text;
namespace Shentun.Peis.PaymentRecords{ public class PaymentRecordDto : AuditedEntityDtoName { /// <summary>
///发票申请表id
/// </summary>
public Guid InvoiceApplyId { get; set; }
/// <summary>
/// 付款账户
/// </summary>
public string PaymentAccount { get; set; }
/// <summary>
/// 付款银行
/// </summary>
public string PaymentBank { get; set; }
/// <summary>
/// 付款金额
/// </summary>
public decimal PaymentAmount { get; set; }
/// <summary>
/// 付款时间
/// </summary>
public string PaymentTime { get; set; }
/// <summary>
/// 收款账户
/// </summary>
public string CollectionAccount { get; set; }
/// <summary>
/// 收款银行
/// </summary>
public string CollectionBank { get; set; }
/// <summary>
/// 交易流水号
/// </summary>
public string TransactionId { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; } }}
|