using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.Repository.Domain { [SugarTable("lasa_control_operation")] public class LasaControlOperation { /// /// Desc:标识 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// Desc:专题 /// Default: /// Nullable:False /// public string DeviceSn { get; set; } /// /// Desc:任务id /// Default: /// Nullable:False /// public string TaskId { get; set; } /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime CreateTime { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// public long CreateId { get; set; } /// /// Desc:数据 /// Default: /// Nullable:True /// public string Data { get; set; } } }