First Initial
This commit is contained in:
42
Models/external_employee/external_employeeViewModel.cs
Normal file
42
Models/external_employee/external_employeeViewModel.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using TTSW.EF;
|
||||
using TTSW.Utils;
|
||||
using TTSW.Constant;
|
||||
using TTSW.Common;
|
||||
|
||||
namespace TodoAPI2.Models
|
||||
{
|
||||
public class external_employeeViewModel
|
||||
{
|
||||
public int id { get; set; }
|
||||
|
||||
public string position_number { get; set; }
|
||||
|
||||
public string position_name { get; set; }
|
||||
|
||||
public string fullname { get; set; }
|
||||
|
||||
public int? employee_type_id { get; set; }
|
||||
|
||||
public int? position_type_id { get; set; }
|
||||
|
||||
public string user_email { get; set; }
|
||||
|
||||
public int? user_id { get; set; }
|
||||
|
||||
public int? department_id { get; set; }
|
||||
public string department_name { get; set; }
|
||||
public string department_code { get; set; }
|
||||
public decimal? salary { get; set; }
|
||||
public string employee_type_name { get; set; }
|
||||
public string employee_no { get; set; }
|
||||
|
||||
public int? position_level_id { get; set; }
|
||||
public string position_level_text { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user