| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using Abp.AutoMapper;
- using System.ComponentModel.DataAnnotations;
- using IwbZero.AppServiceBase;
- using WePlatform.WeBase;
- namespace WePlatform.WeLib.SceneFlow.Dto
- {
-
- /// <summary>
- /// 演练情景流策划
- /// </summary>
- [AutoMapTo(typeof(SceneFlowInfo))]
- public class SceneFlowCreateDto:IwbEntityDto
- {
-
- /// <summary>
- /// 情景流名称
- /// </summary>
- [StringLength(SceneFlowInfo.NameLength)]
- public string FlowName { get; set; }
- /// <summary>
- /// 场景类别
- /// </summary>
- [StringLength(SceneCategoryInfo.NoLength)]
- public string SceneCategory { get; set; }
- /// <summary>
- /// 类别名称
- /// </summary>
- public string SceneCategoryName { get; set; }
- /// <summary>
- /// 情景流配置信息
- /// </summary>
- [StringLength(SceneFlowInfo.ContentInfoLength)]
- public string ContentInfo { get; set; }
- /// <summary>
- /// 情景流状态
- /// </summary>
- public int? SceneFlowState { get; set; }
- /// <summary>
- /// 情景流变量
- /// </summary>
- [StringLength(SceneFlowInfo.VariableLength)]
- public string Variable { get; set; }
- /// <summary>
- /// 事务组件
- /// </summary>
- [MaxLength(SceneFlowInfo.ContentInfoLength)]
- public string ComponentInfo { get; set; }
- }
- }
|