using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
///
///
///
public class CustomMapProccessRequestDTO
{
///
///
///
public long CustomId { get; set; }
}
///
///
///
public class CustomMapProccessDTO
{
public List mapProccesses { get; set; }
public string ScaleId { get; set; }
public string Description { get; set; }
}
///
///
///
public class MapProccessDTO
{
public int Sort { get; set; }
public long ScaleId { get; set; }
public string Name { get; set; }
public string UsesTime { get; set; }
public string Introduce { get; set; }
public string Application { get; set; }
public string Notice { get; set; }
///
///
///
public int Status { get; set; }
}
}