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.

34 lines
973 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XGL.Models.Model.OrderPrepare
{
public class WetMaterialModel
{
public string id { get; set; }
public string factory_code { get; set; }
public string prod_code { get; set; }
public string sync_flag { get; set; }
public DateTime plan_time { get; set; }
public string workorder_id { get; set; }
public string workorder_code { get; set; }
public string bucket_id { get; set; }
public string bucket_code { get; set; }
public string material_code { get; set; }
public string material_name { get; set; }
public string product_name { get; set; }
public string shift_desc { get; set; }
public string prod_line_code { get; set; }
public string status { get; set; }
public string processid { get; set; }
}
}