123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
-
- [SugarTable("Grp_DecreasePayments")]
- public class Grp_DecreasePayments: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int DiId { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int SupplierArea { get; set; } = 1;
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int SupplierTypeId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(200)")]
- public string SupplierName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
- public string SupplierContact { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string SupplierContactNumber { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
- public string SupplierSocialAccount { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
- public string SupplierEmail { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(300)")]
- public string SupplierAddress { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
- public string PriceName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal Price { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal Quantity { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal FeeTotal { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Currency { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
- public string FilePath { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string OTAOrderNo { get; set; }
-
-
-
- public int IsSelect { get; set; }
- }
- }
|