12345678910111213141516 |
- module.exports = [{
- url: '/devices',
- type: 'get',
- response: {
- 'data|10-20': [{
- 'id|+1': 0,
- 'name': /^\d#天车$/,
- 'childrenCount|0-1000': 0,
- 'workTime|1': 0,
- 'extra': /^https?:\/{2}(w{3}\.)?(\w+\.)(com|net|cn)(\/\w+)*$/,
- 'remark|1-10': '备注文本,',
- 'createTime': "@Datetime('yyyy-MM-dd HH:mm:ss')",
- 'updateTime': "@Datetime('yyyy-MM-dd HH:mm:ss')"
- }]
- }
- }]
|