You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
564 B
27 lines
564 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.PluginServiceInterface.Enums |
|
{ |
|
/// <summary> |
|
/// 单图斑数据类型 |
|
/// </summary> |
|
public enum DTBDataTypeEnum |
|
{ |
|
/// <summary> |
|
/// 单图斑任务包类型 |
|
/// </summary> |
|
DTBJK, |
|
/// <summary> |
|
/// 内业预处理类型 |
|
/// </summary> |
|
NYYCL, |
|
/// <summary> |
|
/// 单图斑矢量类型 |
|
/// </summary> |
|
DTBSL |
|
} |
|
}
|
|
|