LASAPlatform/OpenAuth.App/ServiceApp/Request/ShpDataReq.cs

49 lines
1.2 KiB
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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Request
{
public class ShpDataReq
{
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:项目id
/// Default:
/// Nullable:True
/// </summary>
public string WorkSpaceId { get; set; }
/// <summary>
/// Desc:区域
/// Default:
/// Nullable:True
/// </summary>
public List<string> Geom { get; set; }
}
}