using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace WebAPI.Models
|
{
|
public class ClsGy_PNLInfoSub
|
{
|
public int HInterID { get; set; } // 主表ID
|
public int HEntryID { get; set; } // 子表ID
|
public string HLayOutName { get; set; } // PNL布局名称
|
public string HSetNo { get; set; } // set号
|
public string HPCSNo { get; set; } // PCS号
|
public int HPosition_x { get; set; } // PCS行所在索引
|
public int HPosition_y { get; set; } // PCS列所在索引
|
public int HSetPosition_y { get; set; }
|
public int HSetPosition_x { get; set; }
|
}
|
}
|