using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WCS.Data.Models
{
public class WCS_AGV_Config
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// 车间
///
public string WORKSHOP { get; set; }
///
/// 产线
///
public string POSITION { get; set; }
///
/// 入库状态
///
public bool INENABLE { get; set; }
///
/// 出库状态
///
public bool OUTENABLE { get; set; }
}
}