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