18 lines
624 B
C#
18 lines
624 B
C#
namespace Tnb.BasicData.Entities.Dto
|
|
{
|
|
public class MbomListOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string ebom_id { get; set; }
|
|
public string num { get; set; }
|
|
public string unit_id { get; set; }
|
|
public string version { get; set; }
|
|
public string start_time { get; set; }
|
|
public string end_time { get; set; }
|
|
public string material_id { get; set; }
|
|
public string material_id_id { get; set; }
|
|
public string route_id { get; set; }
|
|
public string route_id_id { get; set; }
|
|
public string is_first { get; set; }
|
|
}
|
|
} |