Files
Web_BLSKafka_Server_Prod/DAL/New_Models/TbSysCounty.cs

20 lines
358 B
C#
Raw Normal View History

2025-11-21 08:48:01 +08:00
using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbSysCounty
{
public int Id { get; set; }
public string CityCode { get; set; } = null!;
public string? Code { get; set; }
public string? Name { get; set; }
public string? Twname { get; set; }
public string? Ename { get; set; }
}