12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- [SugarTable("Grp_Ommission")]
- public class Grp_Ommission:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int Personnel { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Diid { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string GroupDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string GroupLvl { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
- public string Detail { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
- public decimal Money { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string WageYearMonth { get; set; }
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsMakeLoss { get; set; }
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int IsLoss { get; set; }
- }
- }
|