37 lines
831 B
C#
37 lines
831 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.Repository.Domain.FireManagement
|
|
{
|
|
/// <summary>
|
|
/// 站点信息
|
|
/// </summary>
|
|
[SugarTable("fm_preplangeom")]
|
|
public class FmPrePlanGeom
|
|
{
|
|
/// <summary>
|
|
/// Desc:Id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 预案id
|
|
/// </summary>
|
|
public string PrePlanId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:预案范围
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string geom { get; set; }
|
|
}
|
|
}
|