feixian_weifajianguan/OpenAuth.Repository/Domain/GeoStyle.cs

36 lines
832 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
namespace OpenAuth.Repository.Domain;
[SugarTable("geo_style")]
public class GeoStyle
{
public GeoStyle()
{
}
[SugarColumn(IsPrimaryKey = true, ColumnName = "id")]
public string Id { get; set; }
/// <summary>
/// 样式名称geo
/// </summary>
[SugarColumn(ColumnName = "style_name")]
public string StyleName { get; set; }
/// <summary>
/// 标题
/// </summary>
[SugarColumn(ColumnName = "title")]
public string Title { get; set; }
/// <summary>
/// sld地址
/// </summary>
[SugarColumn(ColumnName = "sld_path")]
public string SldPath { get; set; }
[SugarColumn(ColumnName = "style")]
public string Style { get; set; }
[SugarColumn(ColumnName = "create_date")]
public DateTime CreateDate { get; set; }
}