| | |
| | | /// <summary> |
| | | ///ä»»å¡Id |
| | | /// </summary> |
| | | [Key] |
| | | [Display(Name ="ä»»å¡Id")] |
| | | [Column(TypeName="uniqueidentifier")] |
| | | [Editable(true)] |
| | |
| | | ///æ°é |
| | | /// </summary> |
| | | [Display(Name ="æ°é")] |
| | | [DisplayFormat(DataFormatString="18,2")] |
| | | [Column(TypeName="decimal")] |
| | | [Column(TypeName = "int")] |
| | | [Editable(true)] |
| | | [Required(AllowEmptyStrings=false)] |
| | | public decimal agv_qty { get; set; } |
| | | public int? agv_qty { get; set; } |
| | | |
| | | /// <summary> |
| | | ///å建æ¶é´ |
| | |
| | | [MaxLength(30)] |
| | | [Column(TypeName="nvarchar(30)")] |
| | | [Editable(true)] |
| | | [Required(AllowEmptyStrings=false)] |
| | | //[Required(AllowEmptyStrings = false)]//ä¸è½ä¸ºç©º |
| | | public string agv_barcode { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | public Guid? unitag { get; set; } |
| | | |
| | | /// <summary> |
| | | ///ä¸»é® |
| | | ///车轮SNå· |
| | | /// </summary> |
| | | [Key] |
| | | [Display(Name ="主é®")] |
| | | [Column(TypeName="int")] |
| | | [Required(AllowEmptyStrings=false)] |
| | | public int ID { get; set; } |
| | | |
| | | [Display(Name = "车轮SNå·")] |
| | | [MaxLength(500)] |
| | | [Column(TypeName = "nvarchar(500)")] |
| | | public string bindSN { get; set; } |
| | | |
| | | } |
| | | } |