using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("sys_job_api_relation", "定时任务关联表")] public class fjSysJobApiRelation : 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; } } }