You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
C#
25 lines
550 B
C#
using SqlSugar;
|
|
|
|
namespace ZJ_BYD.ViewModel
|
|
{
|
|
public class AheadVM
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string StationCode { get; set; }
|
|
|
|
public string LastStationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 在线模式查询的参数名称
|
|
/// </summary>
|
|
public string PointCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 离线模式查询的参数名,即结果表的字段名称
|
|
/// </summary>
|
|
public string ResultColName { get; set; }
|
|
|
|
}
|
|
}
|