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.
33 lines
785 B
33 lines
785 B
2 years ago
|
namespace Warehouse.Models.mesLevel4
|
||
|
{
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using System.Data.Entity.Spatial;
|
||
|
|
||
|
[Table("shelve")]
|
||
|
public partial class shelve
|
||
|
{
|
||
|
[Key]
|
||
|
[StringLength(20)]
|
||
|
public string shelve_code { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(45)]
|
||
|
public string descriptions { get; set; }
|
||
|
|
||
|
public byte capacity { get; set; }
|
||
|
|
||
|
public short? power_grade { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string final_grade { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string current_grade { get; set; }
|
||
|
|
||
|
public byte pallet_qty { get; set; }
|
||
|
}
|
||
|
}
|