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/WMS/Op_Wms_Logic.cs

75 lines
2.0 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 = "Op_Wms_Logic")]
public class Op_Wms_Logic:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="WMSLOGICID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid WMSLOGICID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="WMSID")]
[Column(TypeName="uniqueidentifier")]
[ParentId("OP_WMS_IN_PLAN")]
public Guid? WMSID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name = "PID")]
[Column(TypeName = "uniqueidentifier")]
[ParentId("OTHER")]
public Guid? PID { get; set; }
/// <summary>
///值
/// </summary>
[Display(Name ="值")]
[Column(TypeName="varchar(max)")]
public string VALUE { get; set; }
/// <summary>
///关键字名称
/// </summary>
[Display(Name ="关键字名称")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string NAME { get; set; }
/// <summary>
///值
/// </summary>
[Display(Name = "值2")]
[MaxLength(200)]
[Column(TypeName = "varchar(200)")]
public string VALUE2 { get; set; }
/// <summary>
///值
/// </summary>
[Display(Name = "值3")]
[MaxLength(200)]
[Column(TypeName = "varchar(200)")]
public string VALUE3 { get; set; }
}
}