39c64cd476
SVN-Revision: r1049
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
/***********************
|
|
* 说明:基础审批模型
|
|
* 创建人:龚宇超
|
|
* 创建日期: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 BaseAuditModel : ModuleModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 审批BillType类型
|
|
/// </summary>
|
|
/// <value>The type of the bill.</value>
|
|
public string BillType { get { return this.PrefixKey + "billType"; } }
|
|
/// <summary>
|
|
/// 进度踪审名
|
|
/// </summary>
|
|
/// <value>The name of the step over.</value>
|
|
public string StepOverName { get { return this.PrefixKey + "stepover"; } }
|
|
/// <summary>
|
|
/// 返退标记
|
|
/// </summary>
|
|
/// <value>The back selected.</value>
|
|
public string BackSelected { get; set; }
|
|
/// <summary>
|
|
/// 滚动条显示
|
|
/// </summary>
|
|
/// <param name="rowItem"></param |