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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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 int 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 = "MATERIAL_SPECIFICATIONS")]
public string MaterialSpecifications { get ; set ; }
/// <summary>
/// 同步时间
/// </summary>
[SugarColumn(ColumnName = "SYNC_TIME")]
public DateTime SyncTime { get ; set ; }
/// <summary>
/// 类别 1=>前板, 2=》后板
/// </summary>
[SugarColumn(ColumnName = "CATEGORY")]
public string Category { get ; set ; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "CREATE_TIME")]
public DateTime CreateTime { get ; set ; }
}
}