| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- declare(strict_types=1);
- use Phinx\Migration\AbstractMigration;
- class Wuliu extends AbstractMigration
- {
- /**
- * Change Method.
- *
- * Write your reversible migrations using this method.
- *
- * More information on writing migrations is available here:
- * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
- *
- * The following commands can be used in this method and Phinx will
- * automatically reverse them when rolling back:
- *
- * createTable
- * renameTable
- * addColumn
- * renameColumn
- * addIndex
- * addForeignKey
- *
- * Remember to call "create()" or "update()" and NOT "save()" when working
- * with the Table class.
- */
- public function change()
- {
- // {
- // "status": "0",/* status 0:正常查询 201:快递单号错误 203:快递公司不存在 204:快递公司识别失败 205:没有信息 207:该单号被限制,错误单号 */
- // "msg": "ok",
- // "result": {
- // "number": "780098068058",
- // "type": "zto",
- // "list": [{
- // "time": "2018-03-09 11:59:26",
- // "status": "【石家庄市】快件已在【长安三部】 签收,签收人: 本人,感谢使用中通快递,期待再次为您服务!"
- // }, {
- // "time": "2018-03-09 09:03:10",
- // "status": "【石家庄市】 快件已到达 【长安三部】(0311-85344265),业务员 容晓光(15908220064) 正在第1次派件, 请保持电话畅通,并耐心等待"
- // }, {
- // "time": "2018-03-08 23:43:44",
- // "status": "【石家庄市】 快件离开 【石家庄】 发往 【长安三部】"
- // }, {
- // "time": "2018-03-08 21:00:44",
- // "status": "【石家庄市】 快件到达 【石家庄】"
- // }, {
- // "time": "2018-03-07 01:38:45",
- // "status": "【广州市】 快件离开 【广州中心】 发往 【石家庄】"
- // }, {
- // "time": "2018-03-07 01:36:53",
- // "status": "【广州市】 快件到达 【广州中心】"
- // }, {
- // "time": "2018-03-07 00:40:57",
- // "status": "【广州市】 快件离开 【广州花都】 发往 【石家庄中转】"
- // }, {
- // "time": "2018-03-07 00:01:55",
- // "status": "【广州市】 【广州花都】(020-37738523) 的 马溪 (18998345739) 已揽收"
- // }],
- // "deliverystatus": "3", /* 0:快递收件(揽件)1.在途中 2.正在派件 3.已签收 4.派送失败 5.疑难件 6.退件签收 */
- // "issign": "1", /* 1.是否签收 */
- // "expName": "中通快递", /* 快递公司名称 */
- // "expSite": "www.zto.com", /* 快递公司官网 */
- // "expPhone": "95311", /* 快递公司电话 */
- // "courier": "容晓光", /* 快递员 或 快递站(没有则为空)*/
- // "courierPhone":"15908220064", /* 快递员电话 (没有则为空) */
- // "updateTime":"2019-08-27 13:56:19", /* 快递轨迹信息最新时间 */
- // "takeTime":"2天20小时14分", /* 发货到收货消耗时长 (截止最新轨迹) */
- // "logo":"https://img3.fegine.com/express/zto.jpg" /* 快递公司LOGO */
- // }
- //}
- $table = $this->table('extension_wuliu', ['comment' => '物流数据']);
- $table
- ->addColumn('number', 'string', ['limit' => 50, 'default' => '', 'comment' => '快递单号'])
- ->addColumn('type', 'string', ['limit' => 32, 'default' => '', 'comment' => '快递公司'])
- ->addColumn('list', 'json', ['null' => true, 'comment' => '物流信息'])
- ->addColumn('delivery_status', 'tinyinteger', ['signed' => false, 'default' => 0, 'comment' => '物流状态 0:快递收件(揽件)1.在途中 2.正在派件 3.已签收 4.派送失败 5.疑难件 6.退件签收'])
- ->addColumn('is_sign', 'tinyinteger', ['signed' => false, 'default' => 0, 'comment' => '是否签收'])
- ->addColumn('exp_name', 'string', ['limit' => 100, 'default' => '', 'comment' => '快递公司名称'])
- ->addColumn('exp_site', 'string', ['limit' => 255, 'default' => '', 'comment' => '快递公司官网'])
- ->addColumn('exp_phone', 'string', ['limit' => 32, 'default' => '', 'comment' => '快递公司电话'])
- ->addColumn('courier', 'string', ['limit' => 32, 'default' => '', 'comment' => '快递员'])
- ->addColumn('courier_phone', 'string', ['limit' => 32, 'default' => '', 'comment' => '快递员电话'])
- ->addColumn('take_time', 'string', ['limit' => 32, 'default' => '', 'comment' => '发货到收货消耗时长'])
- ->addColumn('logo', 'string', ['limit' => 255, 'default' => '', 'comment' => '快递公司LOGO'])
- ->addTimestamps('create_time', 'update_time')
- ->addIndex('number')
- ->create();
- }
- }
|