using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace Sln.Wcs.Model.Domain
{
[SugarTable("base_tasktype"), TenantAttribute("wcs")]
[DataContract(Name = "字典表")]
public class BaseTasktypeInfo
{
///
/// 主键
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 字典名
///
[SugarColumn(ColumnName = "tasktype_name", ColumnDescription = "字典名")]
public string? TaskTypeName { get; set; }
///
/// 对应名
///
[SugarColumn(ColumnName = "tasktype_key", ColumnDescription = "对应名")]
public string? TaskTypeKey { get; set; }
///
/// 模板
///
[SugarColumn(ColumnName = "tasktype_value", ColumnDescription = "模板")]
public string? TaskTypeValue { get; set; }
///
/// 是否可用 0:不可用 1:可用
///
[SugarColumn(ColumnName = "use_flag", ColumnDescription = "是否可用 0:不可用 1:可用")]
public int? UseFlag { get; set; }
///
/// 小车拿放类型,如果是叉车,背负式一定是00-00,如果是CTU,可能05,00,05代表库位,00是设备
///
[SugarColumn(ColumnName = "agv_type", ColumnDescription = "小车拿放类型")]
public string? AgvType { get; set; }
///
/// 小车执行类型
///
[SugarColumn(ColumnName = "agv_task_type", ColumnDescription = "小车执行类型")]
public string? AgvTaskType { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "created_by", ColumnDescription = "创建人")]
public string? CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "created_time", ColumnDescription = "创建时间")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "updated_by", ColumnDescription = "更新人")]
public string? UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "updated_time", ColumnDescription = "更新时间")]
public DateTime? UpdatedTime { get; set; }
}
}