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.
40 lines
1019 B
C#
40 lines
1019 B
C#
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("SM_RECORD", "AUCMA_SCADA")]
|
|
public class SmRecord
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
|
|
public int ObjId { get; set; }
|
|
/// <summary>
|
|
/// 计划编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PLAN_CODE")]
|
|
public string PlanCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工单编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ORDER_CODE")]
|
|
public string OrderCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "COMPLETE_TIME")]
|
|
public DateTime complete_time { get; set; }
|
|
}
|
|
}
|