2026-01-29 11:13:58 +08:00
|
|
|
|
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>
|
2026-01-30 11:11:39 +08:00
|
|
|
|
[SugarTable("fm_preplangeom")]
|
2026-01-29 11:13:58 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|