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