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.
54 lines
1.7 KiB
54 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class ICSFinishedBarCodeModel
|
|
{
|
|
//条码表唯一标识符
|
|
public string ID { get; set; }
|
|
//生产工单号
|
|
public string MOCode { get; set; }
|
|
//生产工单行号
|
|
public string Sequence { get; set; }
|
|
//栈板码
|
|
public string ContainerCode { get; set; }
|
|
//栈板名称
|
|
public string ContainerName { get; set; }
|
|
//产品条码
|
|
public string LotNo { get; set; }
|
|
//产品编码
|
|
public string InvCode { get; set; }
|
|
//数量
|
|
public string Quantity { get; set; }
|
|
//批次号——记录在条码表自定义字段10
|
|
public string BatchCode { get; set; }
|
|
//生产日期
|
|
public string ProductDate { get; set; }
|
|
//操作人(用户编号+用户名称)
|
|
public string MUSER { get; set; }
|
|
//操作时间
|
|
public string MTIME { get; set; }
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
|
|
|
|
public string ProjectCode { get; set; }
|
|
public string Version { get; set; }
|
|
public string Brand { get; set; }
|
|
public string cFree1 { get; set; }
|
|
public string cFree2 { get; set; }
|
|
public string cFree3 { get; set; }
|
|
public string cFree4 { get; set; }
|
|
public string cFree5 { get; set; }
|
|
public string cFree6 { get; set; }
|
|
public string cFree7 { get; set; }
|
|
public string cFree8 { get; set; }
|
|
public string cFree9 { get; set; }
|
|
public string cFree10 { get; set; }
|
|
|
|
}
|
|
}
|