You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Runtime.Serialization;
namespace SlnMesnac.Model.domain
{
/// <summary>
/// 字典表
///</summary>
[SugarTable("wcs_base_dictionary"), TenantAttribute("wcs")]
[DataContract(Name = "字典表")]
public class WcsBaseDictionary
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 字典名
/// </summary>
[SugarColumn(ColumnName = "dic_name")]
public string DicName { get; set; }
/// <summary>
/// 对应名
/// </summary>
[SugarColumn(ColumnName = "dic_key")]
public string DicKey { get; set; }
/// <summary>
/// 模板
/// </summary>
[SugarColumn(ColumnName = "dic_value")]
public string DicValue { get; set; }
/// <summary>
/// 是否可用 0:不可用 1:可用
/// </summary>
[SugarColumn(ColumnName = "use_flag")]
public int UseFlag { get; set; }
/// <summary>
/// 小车拿放类型如果是叉车背负式一定是00-00如果是CTU可能050005代表库位00是设备
/// </summary>
[SugarColumn(ColumnName = "agv_type")]
public string AgvType { get; set; }
/// <summary>
/// 小车执行类型
/// </summary>
[SugarColumn(ColumnName = "agv_task_type")]
public string AgvTaskType { 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; }
}
}