using SqlSugar;
using XF.Domain.Repository;
namespace Hotline.Orders
{
///
/// 热点基础数据
///
public class HotSpotType: CreationSoftDeleteEntity
{
public string HotSpotName { get; set; }
[SugarColumn(IsNullable = true)]
public string ParentId { get; set; }
[SugarColumn(IsNullable = true)]
public string PYCode { get; set; }
[SugarColumn(IsNullable = true)]
public string FullPYCode { get; set; }
public string ProvinceCode { get; set; }
public int OrderBy { get; set; }
public string TrunkNum { get; set; }
///
/// 生成的时候写入
///
public string HotSpotFullName { get; set; }
}
}