1234567891011121314151617181920212223242526272829 |
-
- namespace OASystem.Domain.Entities.System
- {
-
-
-
- [SugarTable("Sys_JobPost")]
- public class Sys_JobPost:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int CompanyId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true,ColumnDataType ="int")]
- public int DepId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string JobName { get; set; }
-
- }
- }
|