添加设备实体

This commit is contained in:
2023-05-17 15:43:30 +08:00
parent 8971b48984
commit 718b2fb806
125 changed files with 26868 additions and 675 deletions

View File

@@ -0,0 +1,97 @@
using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities
{
///<summary>
///TODO
///</summary>
[SugarTable("eqp_spot_ins_ratio_record")]
public partial class EqpSpotInsRatioRecord
{
public EqpSpotInsRatioRecord(){
}
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:False
/// </summary>
public DateTime create_time {get;set;}
/// <summary>
/// Desc:修改时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? modify_time {get;set;}
/// <summary>
/// Desc:编号
/// Default:
/// Nullable:False
/// </summary>
public int id {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? depart_ment {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public int? year {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public int? month {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public int? day {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public int? spot_plan_num {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public int? spot_finsh_num {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? spot_percent {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? section_name {get;set;}
}
}