1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_Customers")]
- public class Grp_Customers:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true, ColumnDataType="int")]
- public int DiId{get; set;}
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Iid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
- public string ClientName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
- public decimal InsuranceCosts { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Currency { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
- public string Attachment { get; set; }
-
- }
- }
|