POST /api/artist_center/services/createPOST /api/artist_center/services/updatePOST /api/content/artist/listGET /api/content/service/infoPOST /api/content/products/infoGET /api/bookmark/saved_artistsPOST /api/withdraw_accounts/unbindservice.status 新增枚举值:
OPEN = 1CLOSE = 2WAITLIST = 3(新增)POST /api/artist_center/services/create 与 POST /api/artist_center/services/update 的 status 参数增加了枚举校验,仅允许 1/2/3。OPEN”调整为“OPEN + WAITLIST”:
POST /api/content/artist/list 的 is_open=true 会把 WAITLIST 视为可接单状态。POST /api/content/artist/list 的 is_open=false 会把 WAITLIST 视为非关闭状态(即不会归入 false 集合)。order_by=recommend 时,排序中“无可接单服务的画师后置”规则也按 OPEN + WAITLIST 判断。services_open_total 统计口径调整为 OPEN + WAITLIST:
POST /api/content/artist/listGET /api/content/service/info(返回中的 artist.services_open_total)POST /api/content/products/info(返回中的 artist.services_open_total)GET /api/bookmark/saved_artistsPOST /api/withdraw_accounts/unbind 的副作用更新:解绑成功后,原先只会关闭 OPEN 服务;现在会同时关闭 WAITLIST 服务(同币种)。POST /api/artist_center/services/update
POST /api/content/artist/list
POST /api/content/artist/list
GET /api/content/service/info
service.status 白名单,需要新增 3(WAITLIST)。status 任意整数可写入”,现在 create/update 会对非法值返回参数校验错误。is_open 筛选与 services_open_total 的页面,需要按“OPEN + WAITLIST 都算可接单”更新展示文案与统计预期。