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.
64 lines
1.9 KiB
64 lines
1.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.FJC.Entity.Operation
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:标记信息--佛山VW276
|
|
/// 作 者:张松男
|
|
/// 编写日期:2022年05月23日
|
|
/// </summary>
|
|
[DBTable(TableName = "T_AW_SignInfo", TimeStampColumn = "CREATEDATE")]
|
|
public class SignInfo
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///标记条码
|
|
///</summary>
|
|
[DBColumn(ColumnName = "ProductCode", DataType = DbType.String)]
|
|
public string ProductCode { get; set; }
|
|
|
|
///<summary>
|
|
///标记类型
|
|
///</summary>
|
|
[DBColumn(ColumnName = "Type", DataType = DbType.String)]
|
|
public string Type { get; set; }
|
|
|
|
///<summary>
|
|
///标记工位
|
|
///</summary>
|
|
[DBColumn(ColumnName = "WorkLoc", DataType = DbType.String)]
|
|
public string WorkLoc { get; set; }
|
|
public string WorkLocName { get; set; }
|
|
|
|
///<summary>
|
|
///标记用户
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
|
public string CREATEUSER { get; set; }
|
|
public string CREATEUSERNAME { get; set; }
|
|
|
|
///<summary>
|
|
///标记时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime2)]
|
|
public string CREATEDATE { get; set; }
|
|
public string BeginTime { get; set; }
|
|
public string EndTime { get; set; }
|
|
|
|
///<summary>
|
|
///停工、复工时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "SIGNDATE", DataType = DbType.DateTime2)]
|
|
public string SIGNDATE { get; set; }
|
|
}
|
|
}
|
|
|