1
yanjinhui
2025-09-24 bd09f6b4fdb821c9fb63e4dd0e9b184d29e9f148
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models
{
    public class Dt_WarehouseType:BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true,ColumnDescription ="主键")]
        public int Id { get; set; }
 
        //库房代码 001 002
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "库房代码")]
        public  string WarehouseCode { get; set; }
 
        //库房名称
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "库房名称")]
        public string WarehouseName { get; set; }
 
    }
}