28 lines
742 B
C#
28 lines
742 B
C#
using System;
|
|
|
|
namespace MineTec.ProManager.BOM_Manager.Dto
|
|
{
|
|
public class UpdateBOM_Manager
|
|
{
|
|
public Guid id { get; set; } //主键
|
|
|
|
public string UpdateUserID { get; set; }//更新用户ID
|
|
|
|
public string UpdateUserName { get; set; }//更新用户姓名
|
|
|
|
public string ProductProjectName { get; set; }//产品项目名称
|
|
|
|
public string BOMID { get; set; }//研发BOMID
|
|
|
|
public string BOMName { get; set; }//研发BOM名称
|
|
|
|
public string BOM_ProductionID { get; set; }//生产BOMID
|
|
|
|
public string BOM_ProductionName { get; set; }//生产BOM名称
|
|
|
|
public string Remark { get; set; } //备注
|
|
|
|
public int IsDelete { get; set; }//是否删除
|
|
}
|
|
}
|