| 1234567891011121314151617181920 |
- namespace WeEngine.CommonDto.WeInfo
- {
- public class WeBehaviorDto
- {
- public string Id { get; set; }
- public string No { get; set; }
- public string Name { get; set; }
- public string Path { get; set; }
- public string ParentPath { get; set; }
- public string Variables { get; set; }
- public string BehaviorTag { get; set; }
- public string Description { get; set; }
- public int BehaviorScoreType { get; set; }
- public int RoleLogicType { get; set; }
- public string RoleNames { get; set; }
- public string RuleKeyword { get; set; }
- public string EnvironResourceNos { get; set; }
- public string KnowledgeNos { get; set; }
- }
- }
|