using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Face.Domain { public class TBL_Station { /// /// 站ID /// public int StationID { get; set; } /// /// 站名 /// public string StationName { get; set; } /// /// 操作站类型 /// public string StationType { get; set; } /// /// 工艺排序 /// public int ArtworkOrder { get; set; } } }