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.
60 lines
1.5 KiB
60 lines
1.5 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using QMAPP.Entity;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.Basic
|
||
|
{
|
||
|
/// </summary>
|
||
|
/// 模块名称:配置表
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2021年03月17日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_MD_ScanIPConfig_QD")]
|
||
|
public class ScanIPConfig : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "MaterialCode", DataType = DbType.String)]
|
||
|
public string MaterialCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 序号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CFG", DataType = DbType.Int32)]
|
||
|
public int CFG { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工位
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "LocCode", DataType = DbType.String)]
|
||
|
public string LocCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 地址
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PlcAddr", DataType = DbType.String)]
|
||
|
public string PlcAddr { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 内容
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "BarCode", DataType = DbType.String)]
|
||
|
public string BarCode { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|