yanjinhui
2025-06-12 69b4b758498b839aedbd82f7d4dee9d879ba65fe
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_CustomIPaddress", "自定义ip地址"), MultiTenant]
    public class Dt_CustomIPaddress:BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public  int  ID { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "IP地址")]
        public string  IPaddress { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "自定义ip地址的中文名字")]
        public string  Addressname { get; set; }
 
 
    }
}