55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace DoAn.SugarModels
|
||
{
|
||
/// <summary>
|
||
/// 总成主数据表
|
||
///</summary>
|
||
[SugarTable("res_seres_assembly_parameter")]
|
||
public class ResGeelyAssemblyParameter
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int Id { get; set; }
|
||
/// <summary>
|
||
/// 检测参数
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="name" )]
|
||
public string Name { get; set; }
|
||
/// <summary>
|
||
/// 别名(提供给客户用)
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="alias" )]
|
||
public string Alias { get; set; }
|
||
/// <summary>
|
||
/// 是否测试,不测试0,要测试1
|
||
/// 默认值: 0
|
||
///</summary>
|
||
[SugarColumn(ColumnName="status" )]
|
||
public byte Status { get; set; }
|
||
/// <summary>
|
||
/// 单位
|
||
///</summary>
|
||
[SugarColumn(ColumnName="unit" )]
|
||
public string Unit { get; set; }
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// 默认值: CURRENT_TIMESTAMP
|
||
///</summary>
|
||
[SugarColumn(ColumnName="create_time" )]
|
||
public DateTime CreateTime { get; set; }
|
||
/// <summary>
|
||
/// 更新时间
|
||
/// 默认值: CURRENT_TIMESTAMP
|
||
///</summary>
|
||
[SugarColumn(ColumnName="update_time" )]
|
||
public DateTime UpdateTime { get; set; }
|
||
}
|
||
}
|