/***********************
* 说明:单据明细模型 (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
{
///
///单据明细表名
///
/// The name of the detail tab.
public string DetailTable { get; set; }
///
/// 修改条件
///
/// The modify cond.
public string ModifyCond { get; set; }
///
/// 单据明细表名2
///
/// The detail tab name2.
public string DetailTable2 { get; set; }
///
///主表名
///
/// The master table.
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"] + "";
}
}
}