12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
-
-
-
- [SugarTable("Fin_DailyFeePayment")]
- public class Fin_DailyFeePayment: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "varchar(225)")]
- public string? Instructions { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "decimal(18,4)")]
- public decimal SumPrice { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int MAudit { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime MAuditDate { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int FAudit { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime FAuditDate { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsPay { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int TransferTypeId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PriceTypeId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CompanyId { get; set; }
- }
- }
|