87 lines
2.3 KiB
C#
87 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class form_1_2
|
|
{
|
|
[Key] public Guid? form_1_2_uid { get; set; }
|
|
public string no { get; set; }
|
|
|
|
public DateTime? date { get; set; }
|
|
public string dates { get; set; }
|
|
|
|
//
|
|
public string subject { get; set; }
|
|
//
|
|
|
|
public string dear { get; set; }
|
|
|
|
//
|
|
public string first_name_th { get; set; }
|
|
|
|
public string last_name_th { get; set; }
|
|
|
|
//
|
|
public string position_no { get; set; }
|
|
|
|
public string position { get; set; }
|
|
|
|
//
|
|
public string agency_name_th { get; set; }
|
|
|
|
public string agency_category_name { get; set; }
|
|
|
|
//
|
|
public DateTime? start_working { get; set; }
|
|
public string day_start_workings { get; set; }
|
|
public string month_start_workings { get; set; }
|
|
public string year_start_workings { get; set; }
|
|
public string year_working { get; set; }
|
|
|
|
public string year_month { get; set; }
|
|
|
|
//
|
|
public string wish { get; set; }
|
|
|
|
//
|
|
public string old_position { get; set; }
|
|
|
|
public string qualification { get; set; }
|
|
|
|
//
|
|
public decimal? salary { get; set; }
|
|
|
|
public string new_position { get; set; }
|
|
//
|
|
public Guid? budget_project_uid { get; set; }
|
|
public Guid? budget_plan_uid { get; set; }
|
|
public string new_qualification { get; set; }
|
|
public string new_salaray { get; set; }
|
|
public string budget_year_name_th { get; set; }
|
|
public List<t_form_1_2_images> form_1_2_images { get; set; }
|
|
public List<t_form_1_2_images_2> form_1_2_images_2 { get; set; }
|
|
}
|
|
|
|
public class t_form_1_2_images
|
|
{
|
|
[Key] public Guid? form_1_2_images_uid { get; set; }
|
|
public Guid? form_1_2_uid { get; set; }
|
|
public string url { get; set; }
|
|
public string file_name { get; set; }
|
|
|
|
|
|
public int? row { get; set; }
|
|
}
|
|
|
|
public class t_form_1_2_images_2
|
|
{
|
|
[Key] public Guid? form_1_2_images_2_uid { get; set; }
|
|
public Guid? form_1_2_uid { get; set; }
|
|
public string url { get; set; }
|
|
public string file_name { get; set; }
|
|
|
|
public int? row { get; set; }
|
|
}
|
|
} |