MARKET_CODE_NOT_FOUND = StatusCodeField(505001, 'Market Code Not Found', description=u'一物一码不存在')
|
109
|
109
|
|
|
110
|
110
|
|
|
111
|
|
-class MaintenacePointStatusCode(BaseStatusCode):
|
|
|
111
|
+class MaintenancePointStatusCode(BaseStatusCode):
|
|
112
|
112
|
""" 维修点相关错误码 5060xx """
|
|
113
|
|
- MAINTENACE_POINT_NOT_FOUND = StatusCodeField(506001, 'Maintenace Point Not Found', description=u'维修点不存在')
|
|
|
113
|
+ MAINTENACE_POINT_NOT_FOUND = StatusCodeField(506001, 'Maintenance Point Not Found', description=u'维修点不存在')
|
|
114
|
114
|
|
|
115
|
115
|
|
|
116
|
116
|
class ExpressStatusCode(BaseStatusCode):
|
|
|
|
@@ -118,10 +118,10 @@ class ExpressStatusCode(BaseStatusCode):
|
|
118
|
118
|
EXPRESS_NOT_FOUND = StatusCodeField(507001, 'Express Not Found', description=u'快递公司不存在')
|
|
119
|
119
|
|
|
120
|
120
|
|
|
121
|
|
-class MaintenaceStatusCode(BaseStatusCode):
|
|
|
121
|
+class MaintenanceStatusCode(BaseStatusCode):
|
|
122
|
122
|
""" 维修相关错误码 5080xx """
|
|
123
|
|
- MAINTENACE_NOT_FOUND = StatusCodeField(508001, 'Maintenace Not Found', description=u'维修不存在')
|
|
124
|
|
- MAINTENACE_PERMISSION_DENIED = StatusCodeField(508002, 'Maintenace Permission Denied', description=u'维修权限不足')
|
|
|
123
|
+ MAINTENACE_NOT_FOUND = StatusCodeField(508001, 'Maintenance Not Found', description=u'维修不存在')
|
|
|
124
|
+ MAINTENACE_PERMISSION_DENIED = StatusCodeField(508002, 'Maintenance Permission Denied', description=u'维修权限不足')
|
|
125
|
125
|
|
|
126
|
126
|
|
|
127
|
127
|
class AdministratorStatusCode(BaseStatusCode):
|