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.
32 lines
760 B
Plaintext
32 lines
760 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BP.Sys.FrmUI
|
|
{
|
|
/// <summary>
|
|
/// 组件列表(一个表单仅有一个字段)
|
|
/// </summary>
|
|
public class ComponentsFieldList
|
|
{
|
|
/// <summary>
|
|
/// 固定定位组件
|
|
/// </summary>
|
|
public const string Location = "Location";
|
|
/// <summary>
|
|
/// 公文字号
|
|
/// </summary>
|
|
public const string DocWord = "DocWord";
|
|
/// <summary>
|
|
/// 评论抄送
|
|
/// </summary>
|
|
public const string FlowBBS = "FlowBBS";
|
|
/// <summary>
|
|
/// 地图
|
|
/// </summary>
|
|
public const string Map = "Map";
|
|
}
|
|
}
|