payne
2024-04-25 3fa9d2b0420f4d39849f72e6a04b5cb40823fa0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
{
    /// <summary>
    /// 仓库管理
    /// </summary>
    [Table("wms_warehouse_manage")]
    [Comment("库口表")]
    public class WmsWarehouseManage: DEntityBase
    {
        /// <summary>
        /// 名称
        /// </summary>
        [Comment("名称")]
        [Required, MaxLength(100)]
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        [Comment("编码")]
        [Required, MaxLength(50)]
        public string Code { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        [Comment("类型")]
        public int Type { get; set; }
 
 
    }
}