namespace CloudGaming.Repository.Game.Entities.App; /// /// 用户反馈表 /// [Table("T_User_FeedBack")] [EntityDescription(NameRuleMode = NameRuleMode.TableName, NameRuleType= NameRuleType.UpperSnakeCase)] public class T_User_FeedBack : DefaultGameAppEntity { /// /// 用户 => 备注: 用户 /// public Int32? UserId { get; set; } /// /// 内容 => 备注: 内容 /// public string? Text { get; set; } /// /// 联系方式 => 备注: 联系方式 /// public string? ContactUs { get; set; } /// /// 反馈时间 => 备注: 创建时间 /// public DateTime CreateTime { get; set; } /// /// 修改时间 => 备注: 修改时间 /// public DateTime UpdateTime { get; set; } }