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.
25 lines
559 B
C#
25 lines
559 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Scada.Model.domain
|
|
{
|
|
public class ModeStatusView
|
|
{
|
|
/// <summary>
|
|
/// 夹具型号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "X_VALUE")]
|
|
public string XValue { get; set; }
|
|
/// <summary>
|
|
/// y
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Y_VALUE")]
|
|
public string YValue { get; set; }
|
|
}
|
|
}
|