tijian_tieying/web/dccdc.Models/OccupationHistoryModel.cs

22 lines
568 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
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; }
}
}