AUCMA_SCADA/Admin.Core.Model/Model_New/ModeStatusView.cs

24 lines
518 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model
{
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; }
}
}