dengjunjie
2025-10-25 3212f32acdce5938956131ecfb530e361250f82f
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
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
{
    [SugarTable("Dt_Supplier", "供应商表")]
    public class Dt_Supplier:BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "供应商编码")]
        public string Supplier_no { get; set; } 
 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "供应商名称")]
        public string Supplier_name { get; set; } 
 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "电话")]
        public string Telephone { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 70, ColumnDescription = "地址")]
        public string Address { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "邮箱")]
        public string Email { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")]
        public string Remark { get; set; }
 
 
    }
}