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