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.
20 lines
395 B
C#
20 lines
395 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
namespace AUCMA_Air.Entity
|
|
{
|
|
[SugarTable("T_SY_TraceState")]
|
|
public class TSYTraceState
|
|
{
|
|
|
|
/// <summary>
|
|
/// 当前工位
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CurrentStationID")]
|
|
public string CurrentStationID { get; set; }
|
|
|
|
}
|
|
}
|