You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
4.0 KiB
157 lines
4.0 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Win_in.Sfs.Scp.WebApi.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi
|
|
{
|
|
/// <summary>
|
|
/// 零件表实体
|
|
/// </summary>
|
|
public class Part:EntityBase<Guid>
|
|
{
|
|
/// <summary>
|
|
/// 代码(Code)
|
|
/// </summary>
|
|
[Display(Name = "代码")]
|
|
public string Code {get;set;}
|
|
|
|
/// <summary>
|
|
/// 名称(Name)
|
|
/// </summary>
|
|
[Display(Name = "名称")]
|
|
public string Name {get;set;}
|
|
|
|
/// <summary>
|
|
/// 描述(Desc1)
|
|
/// </summary>
|
|
[Display(Name = "描述")]
|
|
public string Desc1 {get;set;}
|
|
|
|
/// <summary>
|
|
/// 描述2(Desc2)
|
|
/// </summary>
|
|
[Display(Name = "描述2")]
|
|
public string Desc2 {get;set;}
|
|
|
|
/// <summary>
|
|
/// 状态(Status)
|
|
/// </summary>
|
|
[Display(Name = "状态")]
|
|
public string Status {get;set;}
|
|
|
|
/// <summary>
|
|
/// 制造件(Can make)
|
|
/// </summary>
|
|
[Display(Name = "制造件")]
|
|
public bool CanMake {get;set;}
|
|
|
|
/// <summary>
|
|
/// 采购件(Can buy)
|
|
/// </summary>
|
|
[Display(Name = "采购件")]
|
|
public bool CanBuy {get;set;}
|
|
|
|
/// <summary>
|
|
/// 计量单位(Uom)
|
|
/// </summary>
|
|
[Display(Name = "计量单位")]
|
|
public string Uom {get;set;}
|
|
|
|
/// <summary>
|
|
/// ABC类(abcClass)
|
|
/// </summary>
|
|
[Display(Name = "ABC类")]
|
|
public string AbcClass {get;set;}
|
|
|
|
/// <summary>
|
|
/// 产品类(Product line)
|
|
/// </summary>
|
|
[Display(Name = "产品类")]
|
|
public string ProductLine {get;set;}
|
|
|
|
/// <summary>
|
|
/// 类型(Type)
|
|
/// </summary>
|
|
[Display(Name = "类型")]
|
|
public string Type {get;set;}
|
|
|
|
/// <summary>
|
|
/// 种类(Catalog)
|
|
/// </summary>
|
|
[Display(Name = "种类")]
|
|
public string Catalog {get;set;}
|
|
|
|
/// <summary>
|
|
/// 分组(Group)
|
|
/// </summary>
|
|
[Display(Name = "分组")]
|
|
public string Group {get;set;}
|
|
|
|
/// <summary>
|
|
/// 颜色(Color)
|
|
/// </summary>
|
|
[Display(Name = "颜色")]
|
|
public string Color {get;set;}
|
|
|
|
/// <summary>
|
|
/// 配置(Configuration)
|
|
/// </summary>
|
|
[Display(Name = "配置")]
|
|
public string Configuration {get;set;}
|
|
|
|
/// <summary>
|
|
/// 项目(Project)
|
|
/// </summary>
|
|
[Display(Name = "项目")]
|
|
public string Project {get;set;}
|
|
|
|
/// <summary>
|
|
/// 版本(version)
|
|
/// </summary>
|
|
//[Display(Name = "版本")]
|
|
//public string version {get;set;}
|
|
|
|
/// <summary>
|
|
/// 工程变更通知单(Engineering change order)
|
|
/// </summary>
|
|
[Display(Name = "工程变更通知单")]
|
|
public string Eco {get;set;}
|
|
|
|
/// <summary>
|
|
/// 标包计量单位(Standard Pack Uom)
|
|
/// </summary>
|
|
[Display(Name = "标包计量单位")]
|
|
public string StdPackUom {get;set;}
|
|
|
|
/// <summary>
|
|
/// 标包数量(Standard Pack Qty)
|
|
/// </summary>
|
|
[Display(Name = "标包数量")]
|
|
public decimal StdPackQty {get;set;}
|
|
|
|
/// <summary>
|
|
/// 替代计量单位(Extra Pack UM)
|
|
/// </summary>
|
|
[Display(Name = "替代计量单位")]
|
|
public string ExtPackUom {get;set;}
|
|
|
|
/// <summary>
|
|
/// 替代包装数量(Extra Pack Qty)
|
|
/// </summary>
|
|
[Display(Name = "替代包装数量")]
|
|
public decimal ExtPackQty {get;set;}
|
|
|
|
/// <summary>
|
|
/// 地点(Site)
|
|
/// </summary>
|
|
[Display(Name = "地点")]
|
|
public string Site {get;set;}
|
|
|
|
/// <summary>
|
|
/// 公司(Company)
|
|
/// </summary>
|
|
[Display(Name = "公司")]
|
|
public string Company {get;set;}
|
|
}
|
|
}
|