using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Tasks;
namespace Bussiness.Model.SystemData
{
///
/// 系统编码前置表
///
public class sys_code_pre
{
///
/// 主键id
///
[Key]
public long id { get; set; }
///
/// 编码生成名称
///
[StringLength(50)]
[Required]
public string code_name { get; set; }
///
/// 编码生成前置名称
///
[Required]
[StringLength(50)]
public string pre_name { get; set; }
///
/// 编码生成时间
///
[Required]
public DateTime code_date { get; set; }
///
/// 编码生成当前值
///
[Required]
public long code_value { get; set; }
}
}