using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.hj { [Tenant("hj")] [SugarTable("Sys_Job_Api_Relation", "定时任务关联表")] public class SysJobApiRelation : BaseModel { [SugarColumn(ColumnName = "job_id")] public long JobId { get; set; } [SugarColumn(ColumnName = "api_url", Length = 200)] public string ApiUrl { get; set; } [SugarColumn(ColumnName = "request_body", Length = 500)] public string RequestBody { get; set; } } }