You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.2 KiB
C#

2 years ago
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Entity
{
[SugarTable("CodeCity")]
[Description("城市")]
public class CodeCity : CommonDbEntity
{
/// <summary>
/// 代码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 省份代码
/// </summary>
public string ProvinceCode { get; set; }
/// <summary>
/// 省份名称
/// </summary>
public string ProvinceName { get; set; }
/// <summary>
/// 中文名称
/// </summary>
public string CNName { get; set; }
/// <summary>
/// 英文名称
/// </summary>
public string EnName { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 区域代码
/// </summary>
public string AreaCode { get; set; }
/// <summary>
/// 邮编
/// </summary>
public string PostCode { get; set; }
2 years ago
2 years ago
}
}