liuying
2024-05-09 f4078b75fe80f03e58af3217bf642d0de118d1c9
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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace Admin.NET.Core
{
    [Table("base_SerialSN")]
    [Comment("单据号流水号履历表")]
    public class BaseSerialSN : DEntityBase
    {
        /// <summary>
        /// 流水号时间
        /// </summary>
        [Comment("流水号时间")]
        [Required]
        public DateTime CurrentDate { get; set; }
 
        /// <summary>
        /// 流水号
        /// </summary>
        [Comment("流水号")]
        [Required]
        public int Sn { get; set; }
 
        /// <summary>
        /// 单据号类型
        /// </summary>
        [Comment("单据号类型")]
        [Required]
        public int SerialType { get; set; }
    }
}