You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.1 KiB
C#

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 System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///<summary>
///
///</summary>
[SugarTable("lasa_shpdata")]
public partial class LasaShpData
{
public LasaShpData(){
}
/// <summary>
/// Desc:主键
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public string Id {get;set;}
/// <summary>
/// Desc:名称
/// Default:
/// Nullable:True
/// </summary>
public string Name {get;set;}
/// <summary>
/// Desc:类型(区分限飞区域,作业区域等)
/// Default:
/// Nullable:True
/// </summary>
public string Type {get;set;}
/// <summary>
/// Desc:属性边框属性颜色宽度等json格式
/// Default:
/// Nullable:True
/// </summary>
public string Properties {get;set;}
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateTime {get;set;}
/// <summary>
/// Desc:创建人
/// Default:
/// Nullable:True
/// </summary>
public string CreateUser {get;set;}
/// <summary>
/// Desc:区域
/// Default:
/// Nullable:True
/// </summary>
public string Geom {get;set;}
/// <summary>
/// Desc:项目id
/// Default:
/// Nullable:True
/// </summary>
public string WorkSpaceId {get;set;}
public int State { get;set;}
public string CreateUserName { get; set;}
public decimal Area { get; set; }
public decimal Length { get; set; }
}
}