You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
606 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.DB.Model
{
public class AssignmentRecord
{
public int f_id { get; set; }
public string f_job_name { get; set; }
public string f_recipe_no { get; set; }
public string f_start_time { get; set; }
public string f_end_time { get; set; }
public int f_track_no { get; set; }
public int f_wafer { get; set; }
public string f_user { get; set; }
public string f_status { get; set; }
}
}