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_AGVCartInfo), "海康AGV小车信息")]
public class Dt_AGVCartInfo : BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 小车编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "小车编号")]
public string AGVCode { get; set; }
///
/// 小车类型
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "小车类型")]
public string HkagvType { get; set; }
///
/// 备注
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")]
public string Remark { get; set; }
}
}