You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Model.Entity
{
/// <summary>
/// 基础信息
/// </summary>
[SugarTable("eqmt_base")]
public class EqmtBase
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")]
public long id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
public DateTime? gmt_create { get; set; } = DateTime.Now;
/// <summary>
/// 修改时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "修改时间")]
public DateTime? gmt_modified { get; set; }
/// <summary>
/// 设备ID
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "设备ID")]
public int eqmt_id { get; set; }
/// <summary>
/// 设备名称
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "设备名称")]
public string line_name { get; set; }
/// <summary>
/// 产品名称
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "产品名称")]
public string product { get; set; }
/// <summary>
/// 性能基数
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "性能基数")]
public int strand_speed { get; set; }
}
}