using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ChangKeTec.Wms.Models.Wms { public partial class TS_VIN { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [StringLength(50)] public string SourceId { get; set; } [StringLength(50)] public string EqptCode { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string VinCode { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string PartCode { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string Batch { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string ProjectId { get; set; } [StringLength(50)] public string PlanOrderId { get; set; } public int Flag { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string CreateOper { get; set; } public DateTime CreateTime { get; set; } public int ErrorCode { get; set; } public string ErrorText { get; set; } } }