| 1234567891011121314 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Winsoft.GOV.Framework.Model
- {
- public class ApplyType
- {
- public static string[] Names = { "即办", "全程网上申办,在线取件", "全程网上申办,快递送达", "网上申报、预审,窗口核验、取件", "窗口申报,快递送达" };
- }
- }
|