using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace DoAn.SugarModels
{
///
/// 总成主数据表
///
[SugarTable("res_seres_assembly_limit")]
public class ResGeelyAssemblyLimit
{
///
///
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
public int Id { get; set; }
///
/// prod_assembly_part总成Id
/// 默认值: 0
///
[SugarColumn(ColumnName="part_id" )]
public int PartId { get; set; }
///
/// prod_assembly_parameter参数id
/// 默认值: 0
///
[SugarColumn(ColumnName="parameter_id" )]
public int ParameterId { get; set; }
///
/// 是否测试,不测试0,要测试1
/// 默认值: 0
///
[SugarColumn(ColumnName="status" )]
public byte Status { get; set; }
///
/// 上限
///
[SugarColumn(ColumnName="uplimit" )]
public decimal Uplimit { get; set; }
///
/// 下限
///
[SugarColumn(ColumnName="lowlimit" )]
public decimal Lowlimit { get; set; }
///
/// 创建时间
/// 默认值: CURRENT_TIMESTAMP
///
[SugarColumn(ColumnName="create_time" )]
public DateTime CreateTime { get; set; }
///
/// 更新时间
/// 默认值: CURRENT_TIMESTAMP
///
[SugarColumn(ColumnName="update_time" )]
public DateTime UpdateTime { get; set; }
}
}