ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC=2] ## 工作列表 >[info] 工种 id 蔬菜 id = 0 表示不根据这两类查询 >当前页默认第 1 页,页码默认10 条。要精确到分类,最好传对应的 id ~~~[api] get:/job/list int:category_id=0#工种id int:category2_id=0#蔬菜分类id int:current_page=1#当前页 int:pag_number=10#页码 <<< success { "code": 0, "data": [ { "id": 1, "name": "大西红柿",//工作名 "icon": "http://www.baidu.com",//图标地址 "description": "大西红柿",//工作描述 "category_id": 1,//工种id "category2_id": 2//蔬菜分类id } ] } <<< error ~~~ ## 工作详情 ~~~[api] get:/job/detail *int:id=1#工作id <<< success { "code": 0, "data": { "id": 3, "name": "7", "icon": "", "description": "非农作物工种的直接工作项", "specifications": [ { "name": "粪肥类型", "type": "choice", "items": [ "干鸡粪", "干稻壳粪", "干鸽子粪", "湿粪", "其他粪" ], "choice_count": 1 }, { "name": "包装方式", "type": "choice", "items": [ "60公斤袋装", "80公斤袋装", "100公斤袋装", "散装" ], "choice_count": 1 }, { "name": "服务内容", "type": "choice", "items": [ "推粪撒粪", "包沟(挑沟、推粪、撒粪、包沟、包土)" ], "choice_count": 1 }, { "name": "工作量", "type": "number", "unit": "袋/立方" } ], "category_id": 7, "category2_id": 1 } } <<< error ~~~ ## 新增工作 ~~~[api] pos:/job/add <<< success <<< error ~~~ ## 修改工作 ~~~[api] post:/job/edit <<< success <<< error ~~~ ## 删除工作 ~~~[api] post:/job/delete *int:id=0#工作id <<< success { "code":0 } ~~~