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.

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; }
}
}