using Mapster; namespace Customer.Source { /// /// APP项目对应参数 app_project_param /// public class AppProjectParam { /// /// ID /// public int id { get; set; } /// /// 版本号 /// public int version { get; set; } /// /// 删除标记 /// public int delFlag { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } /// /// 更新时间 /// public DateTime? updateTime { get; set; } /// /// 创建人 /// public string? createBy { get; set; } /// /// 更新人 /// public string? updateBy { get; set; } /// /// APP项目ID /// public int appId { get; set; } /// /// 功能模块ID /// public int moduleId { get; set; } /// /// 参数名称 /// public string? paramTitle { get; set; } /// /// 参数名 /// public string? paramName { get; set; } /// /// 参数值 /// public string? paramValue { get; set; } } }