平安校园
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

77 行
2.6 KiB

  1. namespace SafeCampus.System;
  2. /// <summary>
  3. /// 批量修改配置表
  4. ///</summary>
  5. [SugarTable("batch_edit_config", TableDescription = "批量修改配置表")]
  6. [Tenant(SqlSugarConst.DB_DEFAULT)]
  7. [IgnoreInitTable]
  8. public class BatchEditConfig : PrimaryKeyEntity
  9. {
  10. /// <summary>
  11. /// 批量配置Id
  12. ///</summary>
  13. [SugarColumn(ColumnName = "UId", ColumnDescription = "批量配置Id", IsNullable = false)]
  14. public long UId { get; set; }
  15. /// <summary>
  16. /// 字段名
  17. ///</summary>
  18. [SugarColumn(ColumnName = "ColumnName", ColumnDescription = "字段名", Length = 100, IsNullable = false)]
  19. public string ColumnName { get; set; }
  20. /// <summary>
  21. /// 字段描述
  22. ///</summary>
  23. [SugarColumn(ColumnName = "ColumnComment", ColumnDescription = "字段描述", Length = 100, IsNullable = false)]
  24. public string ColumnComment { get; set; }
  25. /// <summary>
  26. /// 作用类型
  27. ///</summary>
  28. [SugarColumn(ColumnName = "DataType", ColumnDescription = "作用类型", Length = 100, IsNullable = false)]
  29. public string DataType { get; set; }
  30. /// <summary>
  31. /// 字典值
  32. ///</summary>
  33. [SugarColumn(ColumnName = "DictTypeCode", ColumnDescription = "字典值", Length = 100, IsNullable = true)]
  34. public string DictTypeCode { get; set; }
  35. /// <summary>
  36. /// 数据库类型
  37. ///</summary>
  38. [SugarColumn(ColumnName = "NetType", ColumnDescription = "数据库类型", Length = 100, IsNullable = true)]
  39. public string NetType { get; set; }
  40. /// <summary>
  41. /// 接口名称
  42. /// </summary>
  43. [SugarColumn(ColumnName = "RequestUrl", ColumnDescription = "接口名称", Length = 100, IsNullable = true)]
  44. public string RequestUrl { get; set; }
  45. /// <summary>
  46. /// 接口类型
  47. /// </summary>
  48. [SugarColumn(ColumnName = "RequestType", ColumnDescription = "接口类型", Length = 100, IsNullable = true)]
  49. public string RequestType { get; set; }
  50. /// <summary>
  51. /// 接口结果标签
  52. /// </summary>
  53. [SugarColumn(ColumnName = "RequestLabel", ColumnDescription = "接口结果标签", Length = 100, IsNullable = true)]
  54. public string RequestLabel { get; set; }
  55. /// <summary>
  56. /// 接口结果值
  57. /// </summary>
  58. [SugarColumn(ColumnName = "RequestValue", ColumnDescription = "接口结果值", Length = 100, IsNullable = true)]
  59. public string RequestValue { get; set; }
  60. /// <summary>
  61. /// 启用状态
  62. /// </summary>
  63. [SugarColumn(ColumnName = "Status", ColumnDescription = "状态", Length = 100, IsNullable = false)]
  64. public string Status { get; set; }
  65. }