using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AmrControl.DB.Models { /// /// 仓储的数据模型 /// /// [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; } } }