123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_CreditCardPayment")]
- public class Grp_CreditCardPayment:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PayDId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")]
- public string ConsumptionPatterns { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public String ConsumptionDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CTDId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")]
- public string BankNo { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")]
- public string CardholderName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal PayMoney { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PaymentCurrency { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
- public decimal DayRate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string CompanyBankNo { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")]
- public string OtherBankName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")]
- public string OtherSideNo { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")]
- public string OtherSideName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public string MFOperator { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string MFOperatorDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsAuditDM { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int AuditDMOperate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string AuditDMDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsAuditMF { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int AuditMFOperate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string AuditMFDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsAuditGM { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int AuditGMOperate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string AuditGMDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsPay { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DIId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CTable { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal PayPercentage { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal PayThenMoney { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal PayPercentageOld { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal PayThenMoneyOld { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string UpdateDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Payee { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal RMBPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int OrbitalPrivateTransfer { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
- public decimal ExceedBudget { get; set; }
- }
- }
|