| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- using WePlatform.WeBase;
- namespace WePlatform.WeLib.SceneFlow.Dto
- {
-
- /// <summary>
- /// 演练情景流策划
- /// </summary>
- [AutoMapTo(typeof(SceneFlowInfo))]
- public class SceneFlowUpdateDto: EntityDto<string>
- {
-
- /// <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; }
- }
- }
|