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