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.
 
 
 

145 lines
4.1 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 ASNLabel:EntityBase<Guid>
{
/// <summary>
/// 标签代码(Label code)
/// </summary>
[Display(Name = "标签代码(LabelCode)")]
public string LabelCode { get;set;}
/// <summary>
/// 完整条码数据(Barcode barcode)
/// </summary>
[Display(Name = "完整条码数据(Barcode)")]
public string Barcode { get;set;}
/// <summary>
/// 零件号(Part code)
/// </summary>
[Display(Name = "零件号(PartCode)")]
public string PartCode { get;set;}
/// <summary>
/// 零件名称(Part Name)
/// </summary>
[Display(Name = "零件名称(PartName)")]
public string PartName { get;set;}
/// <summary>
/// 零件描述(Part desc)
/// </summary>
[Display(Name = "零件描述(PartDesc)")]
public string PartDesc { get;set;}
/// <summary>
/// 批次(Lot number)
/// </summary>
[Display(Name = "批次(Lot)")]
public bool Lot { get;set;}
/// <summary>
/// 计量单位(UM)
/// </summary>
[Display(Name = "计量单位(Uom)")]
public bool Uom { get;set;}
/// <summary>
/// 数量(Label quantity)
/// </summary>
[Display(Name = "数量(Qty)")]
public decimal Qty { get;set;}
/// <summary>
/// 标包计量单位(Package UM)
/// </summary>
[Display(Name = "标包计量单位(StdPackUom)")]
public string StdPackUom { get;set;}
/// <summary>
/// 标包数量(Package quantity)
/// </summary>
[Display(Name = "标包数量(StdPackQty)")]
public decimal StdPackQty { get;set;}
/// <summary>
/// 供应商代码(Supplier Code)
/// </summary>
[Display(Name = "供应商代码(SupplierCode)")]
public string SupplierCode { get;set;}
/// <summary>
/// 供应商名称(Supplier Name)
/// </summary>
[Display(Name = "供应商名称(SupplierName)")]
public string SupplierName { get;set;}
/// <summary>
/// 订单号(Purchase order number)
/// </summary>
[Display(Name = "订单号(PoNumber)")]
public string PoNumber { get;set;}
/// <summary>
/// 订单行(Purchase order Line)
/// </summary>
[Display(Name = "订单行(PoLine)")]
public string PoLine { get;set;}
/// <summary>
/// 发货单号(ASN Number)
/// </summary>
[Display(Name = "发货单号(AsnNumber)")]
public string AsnNumber { get;set;}
/// <summary>
/// 要货计划单号(Plan number)
/// </summary>
[Display(Name = "要货计划单号(RpNumber)")]
public string RpNumber { get;set;}
/// <summary>
/// 供应商批次(Supplier Lot)
/// </summary>
[Display(Name = "供应商批次(SupplierLot)")]
public string SupplierLot { get;set;}
/// <summary>
/// 生产日期(Produce Date)
/// </summary>
[Display(Name = "生产日期(ProduceDate)")]
public DateTime ProduceDate { get;set;}
/// <summary>
/// 托标签号(Pallet label number)
/// </summary>
[Display(Name = "托标签号(PalletLabelnumber)")]
public decimal PalletLabelnumber { get;set;}
/// <summary>
/// 地点(site)
/// </summary>
[Display(Name = "地点(Site)")]
public string Site { get;set;}
/// <summary>
/// 公司(IAC company code)
/// </summary>
[Display(Name = "公司(Company)")]
public decimal Company { get;set;}
/// <summary>
/// 备注(Remark)
/// </summary>
[Display(Name = "备注(Remark)")]
public string Remark { get;set;}
}
}