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.
BookingHeChuan/Myshipping.FlowCenter/Enum/CommonFrmType.cs

22 lines
354 B
C#

2 years ago
using System.ComponentModel;
namespace Myshipping.FlowCenter;
2 years ago
/// <summary>
/// 表单类型
/// </summary>
public enum FormType
{
/// <summary>
/// 正常
/// </summary>
[Description("动态表单")]
DESIGNFORM = 0,
/// <summary>
/// 停用
/// </summary>
[Description("自定义表单")]
CUSTOMFORM = 1,
}