45 lines
2.1 KiB
C#
45 lines
2.1 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class form_1_1
|
|
{
|
|
[Key] public Guid? budget_income_qualification_uid { get; set; }
|
|
public Guid? budget_year_uid { get; set; }
|
|
public int? budget_income_qualification_no { get; set; }
|
|
public string qualification_no { get; set; }
|
|
public DateTime? budget_income_qualification_date { get; set; }
|
|
public string budget_income_qualification_topic { get; set; }
|
|
public string budget_income_qualification_dear { get; set; }
|
|
public string first_name { get; set; }
|
|
public string last_name { get; set; }
|
|
public string position_no { get; set; }
|
|
public string position_name { get; set; }
|
|
public Guid? agency_uid { get; set; }
|
|
public Guid? budget_plan_uid { get; set; }
|
|
public Guid? budget_project_uid { get; set; }
|
|
public DateTime? budget_project_date { get; set; }
|
|
public int? budget_project_time_year { get; set; }
|
|
public int? budget_project_time_month { get; set; }
|
|
public Guid? faculty_uid { get; set; }
|
|
public Guid? current_position_uid { get; set; }
|
|
public Guid? new_position_uid { get; set; }
|
|
public Guid? current_qualification_uid { get; set; }
|
|
public Guid? new_qualification_uid { get; set; }
|
|
[Column(TypeName = "decimal(18,2)")] public decimal? current_salary { get; set; }
|
|
[Column(TypeName = "decimal(18,2)")] public decimal? new_salary { get; set; }
|
|
public string budget_income_qualification_file_1 { get; set; }
|
|
public string budget_income_qualification_file_2 { get; set; }
|
|
public string due_to { get; set; }
|
|
public int? current_education_level_id { get; set; }
|
|
public int? new_education_level_id { get; set; }
|
|
public string current_position { get; set; }
|
|
public string new_position { get; set; }
|
|
public string current_qualification { get; set; }
|
|
|
|
public string new_qualification { get; set; }
|
|
public string remark { get; set; }
|
|
}
|
|
} |