You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Vue.Net/VOL.Entity/DomainModels/System/Sys_billno_set.cs

111 lines
2.9 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*如果数据库字段发生变化请在代码生器重新生成此Model
*/
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.SystemModels;
namespace VOL.Entity.DomainModels
{
[Entity(TableCnName = "编码规则表",TableName = "Sys_billno_set")]
public class Sys_billno_set:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[MaxLength(36)]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid GID { get; set; }
/// <summary>
///业务类型名称
/// </summary>
[Display(Name ="业务类型名称")]
[MaxLength(30)]
[Column(TypeName="varchar(30)")]
[Required(AllowEmptyStrings=false)]
public string OPLBNAME { get; set; }
/// <summary>
///规则类型编号
/// </summary>
[Display(Name ="规则类型编号")]
[MaxLength(20)]
[Column(TypeName="varchar(20)")]
public string RULEBLNO { get; set; }
/// <summary>
///规则日期类型
/// </summary>
[Display(Name ="规则日期类型")]
[MaxLength(20)]
[Column(TypeName="varchar(20)")]
public string RULEDATETYPE { get; set; }
/// <summary>
///单据用途
/// </summary>
[Display(Name ="单据用途")]
[MaxLength(36)]
[Column(TypeName="varchar(36)")]
public string BILLTYPE { get; set; }
/// <summary>
///企业id
/// </summary>
[Display(Name ="企业id")]
[MaxLength(60)]
[Column(TypeName="varchar(60)")]
public string COMPANYID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="CREATEUSER")]
[MaxLength(36)]
[Column(TypeName="varchar(36)")]
public string CREATEUSER { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="CREATETIME")]
[Column(TypeName="datetime")]
public DateTime? CREATETIME { get; set; }
/// <summary>
///是否允许修改
/// </summary>
[Display(Name ="是否允许修改")]
[MaxLength(1)]
[Column(TypeName="varchar(1)")]
public string ISEDIT { get; set; }
/// <summary>
///是否自动排序
/// </summary>
[Display(Name ="是否自动排序")]
[MaxLength(1)]
[Column(TypeName="varchar(1)")]
public string ISAUTO { get; set; }
/// <summary>
///报关业务头部
/// </summary>
[Display(Name ="报关业务头部")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CUSTOMHEAD { get; set; }
}
}