You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class TS_VIN_HIS
|
|
{
|
|
[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; }
|
|
|
|
public DateTime ExecTime { get; set; }
|
|
}
|
|
}
|
|
|