45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core;
|
|
|
|
/// <summary>
|
|
/// 各省份政策初始化表
|
|
/// </summary>
|
|
[SugarTable(null, "各省份政策初始化表")]
|
|
[SysTable]
|
|
public class BusProvinceInitialization : EntityBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 省份Code
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "省份Code", IsNullable = true)]
|
|
public string Code { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "省份名称简称", IsNullable = true)]
|
|
public string Shortname { get; set;}
|
|
/// <summary>
|
|
/// 省份名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "省份名称", IsNullable = true)]
|
|
public string Provincename { get; set; }
|
|
|
|
/// <summary>
|
|
/// 政策类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "政策类型", IsNullable = true)]
|
|
public int Policy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 省份总分
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "省份总分", IsNullable = true)]
|
|
public int Allscore { get; set; }
|
|
|
|
}
|
|
|
|
|