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.
41 lines
913 B
C#
41 lines
913 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_sn_seed")]
|
|
[Serializable]
|
|
public class SysSnSeed : BaseEntity
|
|
{
|
|
[Column("sn_name")]
|
|
[DisplayName(" ")]
|
|
public string SnName { get; set; }
|
|
|
|
[Column("value")]
|
|
[DisplayName(" ")]
|
|
public long Value { get; set; }
|
|
|
|
[Column("reset_type")]
|
|
[DisplayName(" ")]
|
|
public string ResetType { get; set; }
|
|
|
|
[Column("max_value")]
|
|
[DisplayName(" ")]
|
|
public long MaxValue { get; set; }
|
|
|
|
[Column("last_reset_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? LastResetTime { get; set; }
|
|
|
|
[Column("memo")]
|
|
[DisplayName(" ")]
|
|
public string Memo { get; set; }
|
|
|
|
|
|
}
|
|
}
|