ab56a9bcf7
SVN-Revision: r240
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
/***********************
|
|
* 说明:单据明细模型 (p_systembilltype,p_systemDlltab)联合查询
|
|
* 创建人:龚宇超
|
|
* 创建日期:
|
|
* 修改人:
|
|
* 修改日期:
|
|
* 修改备注:
|
|
* 版本:1.0.0.0
|
|
***********************/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace Lskj.Model
|
|
{
|
|
public class BillDetailModel
|
|
{
|
|
|
|
/// <summary>
|
|
///单据明细表名
|
|
/// </summary>
|
|
/// <value>The name of the detail tab.</value>
|
|
public string DetailTable { get; set; }
|
|
/// <summary>
|
|
/// 修改条件
|
|
/// </summary>
|
|
/// <value>The modify cond.</value>
|
|
public string ModifyCond { get; set; }
|
|
/// <summary>
|
|
/// 单据明细表名2
|
|
/// </summary>
|
|
/// <value>The detail tab name2.</value>
|
|
public string DetailTable2 { get; set; }
|
|
/// <summary>
|
|
///主表名
|
|
/// </summary>
|
|
/// <value>The master table.</value>
|
|
public string MasterTable { get; set; }
|
|
|
|
public BillDetailModel(DataRow row)
|
|
{
|
|
if (row == null) return;
|
|
this.DetailTable = row["detailTable"] + "";
|
|
this.DetailTable2 = row["detailTable_1"]+"";
|
|
this.ModifyCond = row["modifyCond"] + "";
|
|
this.MasterTable = row["masterTable"] + "";
|
|
}
|
|
|
|
}
|
|
}
|