using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities
{
///
///TODO
///
[SugarTable("eqp_repair_ratio_record")]
public partial class EqpRepairRatioRecord
{
public EqpRepairRatioRecord(){
}
///
/// Desc:创建时间
/// Default:
/// Nullable:False
///
public DateTime create_time {get;set;}
///
/// Desc:修改时间
/// Default:
/// Nullable:True
///
public DateTime? modify_time {get;set;}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
public int id {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? year {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? month {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? day {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? no_repair_total {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? before_no_repair {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? curr_apply_num {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? assign_num {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? received_num {get;set;}
///
/// Desc:TODO
/// Default:
/// Nullable:True
///
public int? repair_num {get;set;}
}
}