123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Financial
- {
-
-
-
-
- [SugarTable("Fin_ForeignReceivables")]
- public class Fin_ForeignReceivables:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType = "int")]
- public int Diid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string? PriceName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Count { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? Unit { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal ItemSumPrice { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string? To { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? ToTel { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? PayDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string? Attention { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
- public decimal Rate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Currency { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int AddingWay { get; set; }
- }
- }
|