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.
152 lines
3.8 KiB
152 lines
3.8 KiB
4 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
using Win_in.Sfs.Scp.WebApi.Domain.Shared;
|
||
|
|
||
|
namespace Win_in.Sfs.Scp.WebApi.Parts
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 零件Dto
|
||
|
/// </summary>
|
||
|
public class PartDTO : EntityDtoBase<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>
|
||
|
/// 制造件(IsMakePart)
|
||
|
/// </summary>
|
||
|
[Display(Name = "制造件")]
|
||
|
public bool IsMakePart { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 采购件(IsBuyPart)
|
||
|
/// </summary>
|
||
|
[Display(Name = "采购件")]
|
||
|
public bool IsBuyPart { 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>
|
||
|
/// 产品类(productline)
|
||
|
/// </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>
|
||
|
/// 工程变革(Eco)
|
||
|
/// </summary>
|
||
|
[Display(Name = "工程变革")]
|
||
|
public string Eco { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标包计量单位(StdPackUom)
|
||
|
/// </summary>
|
||
|
[Display(Name = "标包计量单位")]
|
||
|
public string StdPackUom { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标包数量(StdPackQty)
|
||
|
/// </summary>
|
||
|
[Display(Name = "标包数量")]
|
||
|
public decimal StdPackQty { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 替代计量单位(ExtPackUom)
|
||
|
/// </summary>
|
||
|
[Display(Name = "替代计量单位")]
|
||
|
public string ExtPackUom { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 替代包装数量(ExtPackQty)
|
||
|
/// </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; }
|
||
|
}
|
||
|
}
|