You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
namespace Aucma.Scada.Model.domain
|
|
{
|
|
/// <summary>
|
|
/// 完成记录
|
|
///</summary>
|
|
[SugarTable("RECORD_PRODUCTFINISH")]
|
|
public class RecordProductfinish
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName="OBJ_ID" ,IsPrimaryKey = true ,OracleSequenceName = "SEQ_RECORD_PRODUCTFINISH")]
|
|
public decimal objId { get; set; }
|
|
/// <summary>
|
|
/// 计划编号
|
|
///</summary>
|
|
[SugarColumn(ColumnName="PLAN_CODE" )]
|
|
public string planCode { get; set; }
|
|
/// <summary>
|
|
/// 物料编号
|
|
///</summary>
|
|
[SugarColumn(ColumnName="MATERIAL_CODE" )]
|
|
public string materialCode { get; set; }
|
|
/// <summary>
|
|
/// 计划工位
|
|
///</summary>
|
|
[SugarColumn(ColumnName="PRODUCTLINE_CODE" )]
|
|
public string productlineCode { get; set; }
|
|
/// <summary>
|
|
/// 完成数量
|
|
///</summary>
|
|
[SugarColumn(ColumnName="COMPLETE_AMOUNT" )]
|
|
public decimal? completeAmount { get; set; }
|
|
/// <summary>
|
|
/// 记录时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName="RECORD_TIME" )]
|
|
public DateTime? recordTime { get; set; }
|
|
/// <summary>
|
|
/// 是否标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName="IS_FLAG" )]
|
|
public decimal? isFlag { get; set; }
|
|
}
|
|
}
|