67 lines
1.9 KiB
C#
67 lines
1.9 KiB
C#
/*
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
*如果数据库字段发生变化,请在代码生器重新生成此Model
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
using VolPro.Entity.SystemModels;
|
|
|
|
namespace VolPro.Entity.DomainModels
|
|
{
|
|
[Entity(TableCnName = "巡检路径点位",TableName = "warehouse_patrolpathpoint",DBServer = "ServiceDbContext")]
|
|
public partial class warehouse_patrolpathpoint:ServiceEntity
|
|
{
|
|
/// <summary>
|
|
///巡检路径点ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
[Key]
|
|
[Display(Name ="巡检路径点ID")]
|
|
[Column(TypeName="int")]
|
|
[Editable(true)]
|
|
[Required(AllowEmptyStrings=false)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
///巡检路径点序号
|
|
/// </summary>
|
|
[Display(Name ="巡检路径点序号")]
|
|
[Column(TypeName="int")]
|
|
[Editable(true)]
|
|
public int? PointIndex { get; set; }
|
|
|
|
/// <summary>
|
|
///所属巡检路径ID
|
|
/// </summary>
|
|
[Display(Name ="所属巡检路径ID")]
|
|
[Column(TypeName="int")]
|
|
[Editable(true)]
|
|
public int? PatrolPathId { get; set; }
|
|
|
|
/// <summary>
|
|
///模型ID
|
|
/// </summary>
|
|
[Display(Name ="模型ID")]
|
|
[MaxLength(255)]
|
|
[Column(TypeName="nvarchar(255)")]
|
|
[Editable(true)]
|
|
public string MapModuleID { get; set; }
|
|
|
|
/// <summary>
|
|
///巡检路径点设备名称
|
|
/// </summary>
|
|
[Display(Name ="巡检路径点设备名称")]
|
|
[MaxLength(255)]
|
|
[Column(TypeName="nvarchar(255)")]
|
|
[Editable(true)]
|
|
public string PointDeviceName { get; set; }
|
|
|
|
|
|
}
|
|
} |