ab56a9bcf7
SVN-Revision: r240
25 lines
588 B
C#
25 lines
588 B
C#
using DevExpress.XtraTab;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.Control.Model
|
|
{
|
|
public class DetailTabPageModel
|
|
{
|
|
/// <summary>
|
|
/// 明细页签序号
|
|
/// </summary>
|
|
public int TabPageIndex { get; set; }
|
|
/// <summary>
|
|
/// 明细页签对象
|
|
/// </summary>
|
|
public XtraTabPage DetailTabPage { get; set; }
|
|
/// <summary>
|
|
/// 明细页签model对象
|
|
/// </summary>
|
|
public GridDetailModel DetailModel { get; set; }
|
|
|
|
}
|
|
} |