基线 SVN r240

SVN-Revision: r240
This commit is contained in:
cyf
2025-02-06 06:46:06 +00:00
commit ab56a9bcf7
5317 changed files with 902274 additions and 0 deletions
@@ -0,0 +1,25 @@
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; }
}
}