using System; using System.Collections.Generic; namespace MySystem.JavaModels { public partial class KxsFeedback { public int Id { get; set; } public string BackType { get; set; } public string Content { get; set; } public int UserId { get; set; } public int Version { get; set; } public int DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }