1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsUserModels
- {
- public partial class KxsUserWithdrawal
- {
- public int Id { get; set; }
- public string ChannelName { get; set; }
- public string BankCode { get; set; }
- public string BankName { get; set; }
- public int WithdrawalType { get; set; }
- public string Result { get; set; }
- public int ApplyStatus { get; set; }
- public int Status { get; set; }
- public string Remark { get; set; }
- public string ApplyNo { get; set; }
- public decimal ServiceAmount { get; set; }
- public decimal TaxAmount { get; set; }
- public decimal RealAmount { get; set; }
- public decimal ApplyAmount { get; set; }
- public int UserId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public decimal BeforeAmt { get; set; }
- }
- }
|