namespace SafeCampus.System;
///
/// 批量修改配置表
///
[SugarTable("batch_edit_config", TableDescription = "批量修改配置表")]
[Tenant(SqlSugarConst.DB_DEFAULT)]
[IgnoreInitTable]
public class BatchEditConfig : PrimaryKeyEntity
{
///
/// 批量配置Id
///
[SugarColumn(ColumnName = "UId", ColumnDescription = "批量配置Id", IsNullable = false)]
public long UId { get; set; }
///
/// 字段名
///
[SugarColumn(ColumnName = "ColumnName", ColumnDescription = "字段名", Length = 100, IsNullable = false)]
public string ColumnName { get; set; }
///
/// 字段描述
///
[SugarColumn(ColumnName = "ColumnComment", ColumnDescription = "字段描述", Length = 100, IsNullable = false)]
public string ColumnComment { get; set; }
///
/// 作用类型
///
[SugarColumn(ColumnName = "DataType", ColumnDescription = "作用类型", Length = 100, IsNullable = false)]
public string DataType { get; set; }
///
/// 字典值
///
[SugarColumn(ColumnName = "DictTypeCode", ColumnDescription = "字典值", Length = 100, IsNullable = true)]
public string DictTypeCode { get; set; }
///
/// 数据库类型
///
[SugarColumn(ColumnName = "NetType", ColumnDescription = "数据库类型", Length = 100, IsNullable = true)]
public string NetType { get; set; }
///
/// 接口名称
///
[SugarColumn(ColumnName = "RequestUrl", ColumnDescription = "接口名称", Length = 100, IsNullable = true)]
public string RequestUrl { get; set; }
///
/// 接口类型
///
[SugarColumn(ColumnName = "RequestType", ColumnDescription = "接口类型", Length = 100, IsNullable = true)]
public string RequestType { get; set; }
///
/// 接口结果标签
///
[SugarColumn(ColumnName = "RequestLabel", ColumnDescription = "接口结果标签", Length = 100, IsNullable = true)]
public string RequestLabel { get; set; }
///
/// 接口结果值
///
[SugarColumn(ColumnName = "RequestValue", ColumnDescription = "接口结果值", Length = 100, IsNullable = true)]
public string RequestValue { get; set; }
///
/// 启用状态
///
[SugarColumn(ColumnName = "Status", ColumnDescription = "状态", Length = 100, IsNullable = false)]
public string Status { get; set; }
}