62 lines
1.5 KiB
C#
62 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace ZR.Model.MES.wms
|
|
{
|
|
/// <summary>
|
|
/// AGV配置
|
|
/// </summary>
|
|
[SugarTable("agv_config")]
|
|
public class AgvConfig
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// agv名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "agv_name")]
|
|
public string AgvName { get; set; }
|
|
|
|
/// <summary>
|
|
/// agv编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "agv_code")]
|
|
public string AgvCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 功能
|
|
/// </summary>
|
|
public string Function { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
}
|
|
} |