22 lines
568 B
C#
22 lines
568 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class OccupationHistoryModel
|
|
{
|
|
public int id { get; set; }
|
|
public int inquiry_id { get; set; }
|
|
public String start_date { get; set; }
|
|
public String end_date { get; set; }
|
|
public String util { get; set; }
|
|
public String workshop { get; set; }
|
|
public String work_type { get; set; }
|
|
public String factory { get; set; }
|
|
public String protect_method { get; set; }
|
|
|
|
}
|
|
}
|