/***********************
* 说明:单据审批模型
* 创建人:龚宇超
* 创建日期:2018-02-07
* 修改人:
* 修改日期:
* 修改备注:
* 版本:1.0.0.0
***********************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace Lskj.Model
{
public class BillAuditModel : BillModel
{
///
/// 单据类别
///
/// The type of the _bill.
public string BillType { get { return MasterPreFix + "BillType"; } }
///
/// 审批加载明细标志
///
/// The audit load detail flag.
public string AuditLoadDetailFlag { get; set; }
///
/// 单据明细formKey
///
/// The default form key.
public string DetailFormKey { get { return "BILLDETAIL_" + FormKey; } }
///
/// 返回标记
///
/// The back selected.
public string BackSelected { get; set; }
///
/// 附加模块保持后刷新主表和主表明细
///
/// The back selected.
public bool SaveRefresh { get; set; }
///
/// 保存成功才刷新
///
public bool SaveSuccessfullyRefresh;
///
/// 审核时保存附加模块
///
public bool ReviewSaveAdditional