namespace SHJX.Service.Model.Dao { [Table("batch")] public class Batch { /// /// 主键自增列 /// [Key] public int SerialKey { get; set; } /// /// 次数值 /// public int CurrentValue { get; set; } /// /// 创建时间 /// public DateTime Createtime { get; set; } } }