| 1234567891011121314151617181920212223242526272829303132 |
- using Abp.Domain.Entities.Auditing;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using WeApp.Authorization.Users;
- using WeApp.Configuration;
- namespace WeApp.TrainingCamp
- {
- /// <summary>
- /// 情景映射
- /// </summary>
- [Table("Train_CampSceneMaps")]
- public class CampSceneMapInfo : CreationAuditedEntity<int, User>
- {
- public string SceneNo { get; set; }
- public string SceneName { get; set; }
- public string AttachNos { get; set; }
- public string PhoneQuestionNo { get; set; }
- public string TipNos { get; set; }
- /// <summary>
- /// 培训营
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string CampNo { get; set; }
- [ForeignKey("CampNo")]
- public CampInfo CampInfo { get; set; }
- }
- }
|