using System;
using SqlSugar;
namespace SHJX.Service.Model.Dao
{
[SugarTable("batch")]
public class Batch
{
///
/// 主键自增列
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int SerialKey { get; set; }
///
/// 次数值
///
public int CurrentValue { get; set; }
///
/// 创建时间
///
public DateTime Createtime { get; set; }
}
}