sxSysJobApiRelation.cs 570 B

12345678910111213141516171819
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("sys_job_api_relation", "定时任务关联表")]
  9. public class sxSysJobApiRelation : BaseModel
  10. {
  11. [SugarColumn(ColumnName = "job_id")]
  12. public long JobId { get; set; }
  13. [SugarColumn(ColumnName = "api_url", Length = 200)]
  14. public string ApiUrl { get; set; }
  15. [SugarColumn(ColumnName = "request_body", Length = 500)]
  16. public string RequestBody { get; set; }
  17. }
  18. }