using System; using System.Collections.Generic; namespace MySystem.JavaModels { public partial class KxsCampReport { public int Id { get; set; } public string CreateBy { get; set; } public string Remark { get; set; } public string UserCode { get; set; } public string Username { get; set; } public int UserId { get; set; } public int Status { get; set; } public string Imgs { get; set; } public string Title { get; set; } public int ReportType { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } public int CampId { get; set; } } }