adminsystem/adminsystem.Entity/Geodata.cs

14 lines
296 B
C#
Raw Permalink Normal View History

2024-05-10 11:47:35 +08:00
using System.ComponentModel.DataAnnotations.Schema;
using NetTopologySuite.Geometries;
namespace adminsystem.Entity;
[Table("data2")]
public class Geodata
{
/// <summary>
/// geodata attributes
/// </summary>
public int id { get; set; }
public string geom { get; set; }
}