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.
85 lines
2.4 KiB
85 lines
2.4 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; }
|
|
|
|
//金华成品条码入库仓库
|
|
public string WhCode { get; set; }
|
|
|
|
//金华入库单号
|
|
public string MoInCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下单备注
|
|
/// </summary>
|
|
public string OrderMemo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注说明
|
|
/// </summary>
|
|
public string Remarks { get; set; }
|
|
|
|
/// <summary>
|
|
/// 手册子号
|
|
/// </summary>
|
|
public string ManualNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 质检备注
|
|
/// </summary>
|
|
public string InsMemo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 净重
|
|
/// </summary>
|
|
public string Weight { get; set; }
|
|
|
|
}
|
|
}
|