添加上下班路线

添加常用路线 1\. 添加常用路线接口 --- **1\. 添加常用路线** ###### 接口功能 > 添加常用路线 ###### URL > [http://api.uuuda.com/commonroute/add](http://api.uuuda.com/commonroute/add) ###### 支持格式 > JSON ###### HTTP请求方式 > POST ###### 请求参数 > |参数|必选|类型|说明| |:----- |:-------|:-----|----- | |token |ture |string|用户身份码 | |type |true |int |常用路线用户类型 1为乘客 2为车主| |stations |ture |string|起始点信息| |departTime |ture |string|出发时间| |name |ture |string|常用路线名称 depart为上班 goback为下班| |publishAt |ture |string|出发频率| |continuousStatus |ture |int|开启持续查找行程| |id |ture |int|常用路线id 编辑的时候传入当前记录的id| ###### 返回字段 > |返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |errno |int |返回结果状态。0:正常;1:错误。 | |msg |string |提示文案 | |data |string |返回内容 | |reqid |string |请求的唯一编号 | ###### 返回结果 ```json 成功:{ "errno": 200, "msg": "保存成功", "data": null, "reqid": "33e18cd68ae5b2513cf68ce7d8768103" } 失败:{ "errno": 500, "msg": "系统错误", "data": null, "reqid": "97f9a1cf6dc155f36ff1e542c497a043" }