using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model
{
///
/// 上位机同步钣金设备设置的物料型号
///
[SugarTable("SM_SYNCMODEL", "AUCMA_SCADA")]
public class SmSyncModel
{
///
/// 主键
///
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_SMSYNCMODEL")]
public float ObjId { get; set; }
///
/// 产品ID
///
[SugarColumn(ColumnName = "SM_PRODUCTID")]
public string SmProductId { get; set; }
///
/// 设备设置型号
///
[SugarColumn(ColumnName = "SM_MODEL")]
public string SmModel { get; set; }
///
/// 同步时间
///
[SugarColumn(ColumnName = "SYNC_TIME")]
public DateTime SyncTime { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATE_TIME")]
public DateTime CreateTime { get; set; }
}
}