using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS_Client.Models
{
public class WCS_AGV_Config
{
///
/// 任务号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string ID { get; set; }
///
/// 车间号
///
public int WORKSHOP { get; set; }
///
/// 产线
///
public string POSITION { get; set; }
///
/// 入库启用
///
public bool INENABLE { get; set; }
///
/// 出库启用
///
public bool OUTENABLE { get; set; }
}
}