using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models
{
[SugarTable(nameof(Dt_ShuttleCar), "穿梭车信息")]
public class Dt_ShuttleCar:BaseEntity
{
///
/// 主键
///
[ImporterHeader(Name = "主键")]
[ExporterHeader(DisplayName = "主键")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int ShuttleCarId { get; set; }
///
/// 穿梭车编号
///
[ImporterHeader(Name = "穿梭车编号")]
[ExporterHeader(DisplayName = "穿梭车编号")]
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "穿梭车编号")]
public string ShuttleCarCode { get; set; }
///
/// 穿梭车名称
///
[ImporterHeader(Name = "穿梭车名称")]
[ExporterHeader(DisplayName = "穿梭车名称")]
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "穿梭车名称")]
public string ShuttleCarName { get; set; }
///
/// 穿梭车位置
///
[ImporterHeader(Name = "穿梭车位置")]
[ExporterHeader(DisplayName = "穿梭车位置")]
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "穿梭车位置")]
public string ShuttleCarPosition { get; set; }
///
/// 穿梭车位置1
///
[ImporterHeader(Name = "穿梭车位置1")]
[ExporterHeader(DisplayName = "穿梭车位置1")]
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "穿梭车位置1")]
public string ShuttleCarPosition1 { get; set; }
}
}