123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMerchantReturn
- {
- public int Id { get; set; }
- public int PayKind { get; set; }
- public decimal ReturnAmt { get; set; }
- public int Status { get; set; }
- public int MchId { get; set; }
- public int UserId { get; set; }
- public string OrderSn { get; set; }
- public string Remark { get; set; }
- public string UpdateBy { get; set; }
- public string CreateBy { get; set; }
- public string BankName { get; set; }
- public string BankNo { get; set; }
- public string AliAccount { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public string DelFlag { get; set; }
- public int Version { get; set; }
- public decimal CashPledge { get; set; }
- }
- }
|