60 lines
1.8 KiB
C#
60 lines
1.8 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using SqlSugar;
|
|||
|
|
namespace DoAn.SugarModels
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 总成主数据表
|
|||
|
|
///</summary>
|
|||
|
|
[SugarTable("res_seres_assembly_limit")]
|
|||
|
|
public class ResGeelyAssemblyLimit
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// prod_assembly_part总成Id
|
|||
|
|
/// 默认值: 0
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="part_id" )]
|
|||
|
|
public int PartId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// prod_assembly_parameter参数id
|
|||
|
|
/// 默认值: 0
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="parameter_id" )]
|
|||
|
|
public int ParameterId { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否测试,不测试0,要测试1
|
|||
|
|
/// 默认值: 0
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="status" )]
|
|||
|
|
public byte Status { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 上限
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="uplimit" )]
|
|||
|
|
public decimal Uplimit { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 下限
|
|||
|
|
///</summary>
|
|||
|
|
[SugarColumn(ColumnName="lowlimit" )]
|
|||
|
|
public decimal Lowlimit { 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; }
|
|||
|
|
}
|
|||
|
|
}
|