using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Api.Req
{
///
/// 编辑站点基础信息
///
public class StationBaseInfoReq
{
///
/// 站控基础信息名称
///
public string BaseStationInfoName { get; set; }
///
/// 站控基础信息内容
///
public string BaseStationInfoContent { get; set; }
}
}