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 WIDESEA.Entity.SystemModels;
namespace WIDESEA.Entity.DomainModels.BasicInfo
{
public class Dt_labelingmachine_hty : BaseEntity
{
///
///
///
[Key]
[Display(Name = "dt_lableid")]
[Column(TypeName = "uniqueidentifier")]
[Required(AllowEmptyStrings = false)]
public Guid dt_lableid { get; set; }
///
///
///
[Display(Name = "dt_lablegrade")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablegrade { get; set; }
///
///
///
[Display(Name = "dt_lablefactory")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablefactory { get; set; }
///
///
///
[Display(Name = "dt_lablestandard")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablestandard { get; set; }
///
///
///
[Display(Name = "dt_lablebatchNum")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablebatchNum { get; set; }
///
///
///
[Display(Name = "dt_lablebundleNum")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablebundleNum { get; set; }
///
///
///
[Display(Name = "dt_lableblocksNum")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lableblocksNum { get; set; }
///
///
///
[Display(Name = "dt_lablenetWeight")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablenetWeight { get; set; }
///
///
///
[Display(Name = "dt_lableproductionDate")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lableproductionDate { get; set; }
///
///
///
[Display(Name = "dt_lableaddress")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lableaddress { get; set; }
///
///
///
[Display(Name = "dt_lablequality")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lablequality { get; set; }
///
///
///
[Display(Name = "dt_lableqrCode")]
[MaxLength(80)]
[Column(TypeName = "nvarchar(80)")]
public string dt_lableqrCode { get; set; }
///
///贴标数据产生时间
///
[Display(Name = "贴标数据产生时间")]
[MaxLength(50)]
[Column(TypeName = "nvarchar(50)")]
public string dt_labeldate { get; set; }
///
///贴标机编号
///
//[Display(Name = "贴标机编号")]
//[Column(TypeName = "int")]
//[Editable(true)]
//[Required(AllowEmptyStrings = false)]
//public int dt_mceNumber { get; set; }
}
}