File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
src/main/kotlin/ink/umb/faqbot/dto/model Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ object DiyService: Table<DiyServiceBind>("service") {
1616 var patternMode = int(" pattern_mode" ).bindTo { it.patternMode }
1717 var requestMethod = int(" req_method" ).bindTo { it.requestMethod }
1818 var url = varchar(" url" ).bindTo { it.url }
19+ val contentType = varchar(" content_type" ).bindTo { it.contentType }
1920// // 服务响应头需要解析的字段列表
2021// var data = varchar("data").bindTo { it.data }
2122}
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ interface DiyServiceBind: Entity<DiyServiceBind> {
3030 var patternMode: @MatchMode Int
3131 var requestMethod: @RequestMethod Int
3232 var url: String
33+ var contentType: String
3334// // 服务响应头需要解析的字段列表
3435// var data: String
3536}
You can’t perform that action at this time.
0 commit comments