BOM管理
This commit is contained in:
parent
5874d02ded
commit
6450d43f61
@ -0,0 +1,10 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace MineTec.ProManager.BOM_Manager
|
||||||
|
{
|
||||||
|
class BOM_ManagerAppService
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace MineTec.ProManager.BOM_Manager
|
||||||
|
{
|
||||||
|
class IBOM_ManagerAppService
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -13,4 +13,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\MineTec.ProManager.Core\MineTec.ProManager.Core.csproj" />
|
<ProjectReference Include="..\MineTec.ProManager.Core\MineTec.ProManager.Core.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="BOM_Manager\Dto\" />
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -0,0 +1,88 @@
|
|||||||
|
using Abp.Domain.Entities;
|
||||||
|
using Abp.Domain.Entities.Auditing;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace MineTec.ProManager.Entitys.Order.BOM_Manager
|
||||||
|
{
|
||||||
|
[System.ComponentModel.DataAnnotations.Schema.Table("BOM_Manager")]
|
||||||
|
|
||||||
|
public class BOM_Manager : Entity<Guid>, IHasCreationTime
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 创建日期
|
||||||
|
/// </summary>
|
||||||
|
public DateTime? CreateTime { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 创建人ID
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string CreateUserID { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 创建人姓名
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string CreateUserName { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 修改日期
|
||||||
|
/// </summary>
|
||||||
|
public DateTime? UpdateTime { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 修改人ID
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string UpdateUserID { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 修改人名称
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string UpdateUserName { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 产品项目ID
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string ProductProjectID { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 产品项目名称
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string ProductProjectName { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 研发BOMID
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string BOMID { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 研发BOM名称
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string BOMName { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 生产BOMID
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string BOM_ProductionID { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 生产BOM名称
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(50)]
|
||||||
|
public string BOM_ProductionName { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 备注
|
||||||
|
/// </summary>
|
||||||
|
[StringLength(300)]
|
||||||
|
public string Remark { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
///是否关联附件:0 否, 1 是
|
||||||
|
/// </summary>
|
||||||
|
public int IsAnnex { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
///是否删除:0 否, 1 是
|
||||||
|
/// </summary>
|
||||||
|
public int IsDelete { get; set; }
|
||||||
|
|
||||||
|
public DateTime CreationTime { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user