12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace AmrControl.DB.Models
- {
- /// <summary>
- /// 仓储的数据模型
- ///
- /// </summary>
- [Table("storage")]
- public class Storage
- {
- [JsonIgnore]
- [Key]
- public long ID { get; set; }
- public string locationID { get; set; }
- public int positionX { get; set; }
- public int positionY { get; set; }
- public int positionZ { get; set; }
- }
- }
|