yanjinhui
2025-03-31 543f0a71b763660a1b5d12ac2bc0e1259e1ea4cb
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
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_ArticleInfom", "信息表"), MultiTenant]
    public class Dt_ArticleInfom:BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int ID { get; set; }
 
        /// <summary>
        /// 套筒名
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50,ColumnDescription ="套筒名")]
        public string ArticleName { get; set; }
 
        /// <summary>
        /// 规格型号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleType { get; set; }
 
 
        /// <summary>
        /// 单位(个)
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string ArticleUnit { get; set; }
 
 
        /// <summary>
        /// 所属分类
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string  Category { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string Articleremark { get; set; }
 
      
 
    }
 
}