pan
2025-11-05 b2c6ce78c7c95c37f9c3e9ea11e86a7af7b0d3fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
{
    /// <summary>
    /// 
    /// </summary>
 
    [SugarTable("DT_DailySequence")]
    public class DT_DailySequence : BaseEntity
    {
        /// <summary>
        /// 
        /// </summary>
        [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; }
 
 
    }
}