55 lines
2.4 KiB
C#
55 lines
2.4 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_dates { 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 string college_faculty_name_th { get; set; }
|
|
public string budget_project_name_th { get; set; }
|
|
|
|
public DateTime? budget_project_date { get; set; }
|
|
public string day_budget_project { get; set; }
|
|
public string month_budget_project { get; set; }
|
|
public string year_budget_project { get; set; }
|
|
public int? budget_project_time_year { get; set; }
|
|
public int? budget_project_time_month { get; set; }
|
|
public string due_to { 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; }
|
|
|
|
//
|
|
public string current_position { get; set; }
|
|
public string new_position { get; set; }
|
|
public string current_qualification { get; set; }
|
|
public string new_qualification { 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 remark { get; set; }//เนื่องจาก
|
|
|
|
}
|
|
} |