You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
901 B
C#
40 lines
901 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.Module.Core.Enums
|
|
{
|
|
|
|
/// <summary>
|
|
/// 组织机构授权类型枚举
|
|
/// </summary>
|
|
public enum OrgAuthTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 进项发票请求密钥
|
|
/// </summary>
|
|
[Description("InInvoice")]
|
|
InInvoice = 1,
|
|
/// <summary>
|
|
/// 银行流水请求密钥
|
|
/// </summary>
|
|
[Description("BankStatement")]
|
|
BankStatement = 2,
|
|
/// <summary>
|
|
/// 钉钉请求密钥
|
|
/// </summary>
|
|
[Description("DingConfig")]
|
|
DingConfig = 3,
|
|
/// <summary>
|
|
/// 钉钉报销审批模板编号
|
|
/// </summary>
|
|
[Description("DingProcessCode")]
|
|
DingProcessCode = 4,
|
|
|
|
}
|
|
|
|
}
|