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.

47 lines
1.2 KiB
C#

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