|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model.Model_New
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 条码下线信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("OFF_LINEINFO", "AUCMA_MES")]
|
|
|
|
|
public class OffLineInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int ObjId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ProductFactoryCode; //计划工厂
|
|
|
|
|
public string ProductSNCode; //公司条码
|
|
|
|
|
public string ProductOrderNo; //工单号
|
|
|
|
|
public string ProductSaleNo; //销售订单号
|
|
|
|
|
public string ProductSaleLineNo; //销售行号
|
|
|
|
|
public string ProductCode;//物料编码
|
|
|
|
|
public string ProductModel;//产品型号
|
|
|
|
|
public string ProductName;//物料描述
|
|
|
|
|
public string ProductType;//产品类型
|
|
|
|
|
public string ProductCheckInfo;//验证组合
|
|
|
|
|
public string ProductRemark; //标签特征
|
|
|
|
|
public string ProductBarNo; //产品条码编码
|
|
|
|
|
public string ProductMasterModel;//主型号
|
|
|
|
|
public string ProductVersion;//版本号
|
|
|
|
|
public string ProductUseInfo;//用途位
|
|
|
|
|
public string ProductCirculate;//流通特性
|
|
|
|
|
public string ProductCreateDate;//生成日期
|
|
|
|
|
public string ProductScanTime; //扫描时间
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public bool ProductRefreshFlag;
|
|
|
|
|
public int ReadFlag;
|
|
|
|
|
public bool ProductDataFlag;
|
|
|
|
|
// 界面提示信息
|
|
|
|
|
public string MsgInfo;
|
|
|
|
|
public bool MsgAlarmFlag;
|
|
|
|
|
public int OrderQty;
|
|
|
|
|
public int ActQty;
|
|
|
|
|
public string oneCode;
|
|
|
|
|
public string serialNumber;
|
|
|
|
|
public string rfid;
|
|
|
|
|
public string sim;
|
|
|
|
|
public string number1;
|
|
|
|
|
public bool ChkOut;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|