1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.System
- {
-
-
-
- public class JobPostView
- {
-
-
-
- public int Id{ get; set; }
-
-
-
- public string JobName { get; set; }
-
-
-
- public int CompanyId { get; set; }
-
-
-
- public string CompanyName { get; set; }
-
-
-
- public int DepId { get; set; }
-
-
-
- public string DepName { get; set; }
-
-
-
- public string Remark { get; set; }
- }
- }
|