20 lines
466 B
C#
20 lines
466 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sinvo.EplanHpD.Plugin.Service.Model
|
|
{
|
|
[SugarTable("T_MOTOR_DATA")]
|
|
public class MotorDataModel
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true, ColumnDataType = "VARCHAR(64)")]
|
|
public string ID { get; set; }
|
|
|
|
[SugarColumn(ColumnDataType = "TEXT")]
|
|
public string Data { get; set; }
|
|
}
|
|
}
|