123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.PersonnelModule
- {
-
-
-
-
- [SugarTable("Pm_WageIssueWorkingDay")]
- public class Pm_WageIssueWorkingDay: EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? YearMonth { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? StartDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? EndDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Workdays { get; set; }
- }
- }
|