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.
27 lines
676 B
C#
27 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XGL.Models.Model.FoamingMac
|
|
{
|
|
public class FoamingMacModel
|
|
{
|
|
public string id { get; set; }
|
|
public string workorder_code { get; set; }
|
|
|
|
public string product_name { get; set; }
|
|
public string product_code { get; set; }
|
|
|
|
public int car_num { get; set; }
|
|
public DateTime? begin { get; set; }
|
|
public DateTime? beout { get; set; }
|
|
public string status { get; set; }
|
|
|
|
public string product_date { get; set; }
|
|
public string create_by { get; set; }
|
|
|
|
}
|
|
}
|