using Business.Core.Attributes; using Business.Model; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bussiness.Model.SystemData { /// /// 流水号配置管理表 /// [CollectionName("dopbiz", "sys_serial_number")] [Comment("采购订单明细详情")] public class sys_serial_number : BaseEntity { /// /// 标题 /// [StringLength(80)] [Comment("标题")] public string? title { get; set; } /// /// 格式 /// [StringLength(200)] [Comment("格式")] public string? format { get; set; } /// /// 位数 /// [Comment("位数")] public int number_size { get; set; } /// /// 当前值 /// [Comment("当前值")] public int current_number { get; set; } /// /// 类型 0:不重置 1:年流水 2:月流水 3:日流水 /// [Comment("类型")] public int number_type { get; set; } /// /// 最后更新日期 /// [Comment("最后更新日期")] public DateTime last_time { get; set; } } }