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/Code_package.cs

68 lines
1.7 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 = "Code_package")]
public class Code_package:BaseEntity
{
/// <summary>
///包装类型
/// </summary>
[Display(Name ="包装类型")]
[MaxLength(20)]
[Column(TypeName="varchar(20)")]
[Editable(true)]
[Required(AllowEmptyStrings=false)]
public string PKGS { get; set; }
/// <summary>
///中文说明
/// </summary>
[Display(Name ="中文说明")]
[MaxLength(30)]
[Column(TypeName="varchar(30)")]
[Editable(true)]
public string CEXPLAIN { get; set; }
/// <summary>
///EDI代码
/// </summary>
[Display(Name ="EDI代码")]
[MaxLength(5)]
[Column(TypeName="varchar(5)")]
[Editable(true)]
public string EDICODE { get; set; }
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[MaxLength(36)]
[Column(TypeName="varchar(36)")]
[Required(AllowEmptyStrings=false)]
public string GID { get; set; }
/// <summary>
///AFR代码
/// </summary>
[Display(Name ="AFR代码")]
[MaxLength(10)]
[Column(TypeName="varchar(10)")]
[Editable(true)]
public string AFRCODE { get; set; }
}
}