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

41 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XGL.Models
{
public class CheckTaskDetailModel
{
public string record_id { get; set; }
public string belong_to { get; set; }
public string order_num { get; set; }
public string rule_name { get; set; }
public string property_code { get; set; }
public string check_mode { get; set; }
public string check_tool { get; set; }
public string unit_code { get; set; }
public string check_standard { get; set; }
public string actual_value { get; set; }
public string status { get; set; }
public string remark { get; set; }
public string attr1 { get; set; }
public string attr2 { get; set; }
public string attr3 { get; set; }
public string attr4 { get; set; }
public string create_by { get; set; }
public DateTime create_time { get; set; }
public string update_by { get; set; }
public DateTime update_time { get; set; }
public string factory_code { get; set; }
public string del_flag { get; set; }
public string project_id { get; set; }
public string project_no { get; set; }
public string type_project_id { get; set; }
public string defect_code { get; set; }
public string defect_quality { get; set; }
public string defect_name { get; set; }
}
}