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/ZHENHUA/OP_YARD_ZHENHUA_WORKINFO.cs

153 lines
3.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 = "OP_YARD_ZHENHUA_WORKINFO")]
public class OP_YARD_ZHENHUA_WORKINFO:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid GID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="PID")]
[Column(TypeName="uniqueidentifier")]
[ParentId("")]
public Guid? PID { get; set; }
/// <summary>
///箱号
/// </summary>
[Display(Name ="箱号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CNTRNO { get; set; }
/// <summary>
///作业类型
/// </summary>
[Display(Name ="作业类型")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string WORKTYPE { get; set; }
/// <summary>
///提货车号
/// </summary>
[Display(Name ="提货车号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string TRUCKNO_PICKUP { get; set; }
/// <summary>
///提货电话
/// </summary>
[Display(Name ="提货电话")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string PICKUPTEL { get; set; }
/// <summary>
///执行人
/// </summary>
[Display(Name ="执行人")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string OP { get; set; }
/// <summary>
///执行时间
/// </summary>
[Display(Name ="执行时间")]
[Column(TypeName="datetime")]
public DateTime? OPTIME { get; set; }
/// <summary>
///作业项
/// </summary>
[Display(Name ="作业项")]
[MaxLength(20)]
[Column(TypeName="nchar(20)")]
public string OPTYPE { get; set; }
/// <summary>
///附件
/// </summary>
[Display(Name ="附件")]
[MaxLength(1024)]
[Column(TypeName="varchar(1024)")]
public string FILEPATH { get; set; }
/// <summary>
///备注
/// </summary>
[Display(Name ="备注")]
[MaxLength(200)]
[Column(TypeName="varchar(200)")]
public string REMARK { get; set; }
/// <summary>
///件数
/// </summary>
[Display(Name ="件数")]
[Column(TypeName="numeric")]
public decimal? PKGS { get; set; }
/// <summary>
///重量
/// </summary>
[Display(Name ="重量")]
[Column(TypeName="numeric")]
public decimal? KGS { get; set; }
/// <summary>
///包装单位
/// </summary>
[Display(Name ="包装单位")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string KINDPKGS { get; set; }
/// <summary>
///新箱号
/// </summary>
[Display(Name ="新箱号")]
[MaxLength(100)]
[Column(TypeName="varchar(100)")]
public string CNTRNO_2 { get; set; }
/// <summary>
///新封号
/// </summary>
[Display(Name ="新封号")]
[MaxLength(100)]
[Column(TypeName="varchar(100)")]
public string SEALNO_2 { get; set; }
/// <summary>
///作业次数
/// </summary>
[Display(Name = "作业次数")]
[Column(TypeName = "numeric")]
public decimal? WORKCOUNT { get; set; }
}
}