using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core.Entity.WmsBase { /// /// 仓库管理 /// [Table("wms_warehouse_manage")] [Comment("库口表")] public class WmsWarehouseManage: DEntityBase { /// /// 名称 /// [Comment("名称")] [Required, MaxLength(100)] public string Name { get; set; } /// /// 编码 /// [Comment("编码")] [Required, MaxLength(50)] public string Code { get; set; } /// /// 类型 /// [Comment("类型")] public int Type { get; set; } } }