b1c4d67884
SVN-Revision: r501
31 lines
803 B
C#
31 lines
803 B
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"; } }
|