1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| using ExportMap.Models;
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Web;
|
| namespace ExportMap.cs
| {
| public class OsgbUtils
| {
| /// <summary>
| /// 生成
| /// </summary>
| /// <param name="args">XYZ参数</param>
| /// <param name="err">错误信息</param>
| /// <returns>数据发布ID集合</returns>
| public static List<int> Generate(XYZArgs args, ref string err)
| {
| //
|
| return null;
| }
| }
| }
|
|