55 lines
1.1 KiB
C#
55 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.Bydlms
|
|
{
|
|
/// <summary>
|
|
/// 产线MES预警消息记录
|
|
/// </summary>
|
|
[SugarTable("byd_line")]
|
|
public class BydLine
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 线code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "line_code")]
|
|
public string LineCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 线name
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "line_name")]
|
|
public string LineName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_by")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
}
|
|
|
|
}
|