using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
using WIDESEAWCS_Core.DB.Models;
|
using WIDESEAWCS_Core.Tenants;
|
|
namespace WIDESEAWCS_Model.Models
|
{
|
|
[SugarTable("Dt_Tools", "工具信息表"), MultiTenant]
|
public class Dt_Tools : BaseEntity
|
{
|
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int ID { get; set; }
|
|
|
/// <summary>
|
/// 工具名
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "工具名称")]
|
public string ToolName { get; set; }
|
|
|
/// <summary>
|
/// 工具规格
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "规格")]
|
public float Specification { get; set; }
|
|
/// <summary>
|
/// 工具单位(个)
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单位")]
|
public string ToolUnit { get; set; }
|
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")]
|
public string Toolremark { get; set; }
|
|
|
}
|
}
|