using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models.Basic
{
///
///
///
[SugarTable("DT_DailySequence")]
public class DT_DailySequence : BaseEntity
{
///
///
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
[SugarColumn(IsNullable = false)]
public DateTime SequenceDate { get; set; }
[SugarColumn(Length = 50, IsNullable = false)]
public string SequenceKey { get; set; } = "MESBarcode";
[SugarColumn(IsNullable = false)]
public int CurrentValue { get; set; }
}
}