| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | <?phpnamespace Database\Seeders\Backend;use Database\Seeders\BaseSeeder;use Illuminate\Support\Facades\DB;use Illuminate\Support\Str;/** * 广告列表 * * Class BusinessSeeder * @package Database\Seeders */class PositionListSeeder extends BaseSeeder{    public function getColumnData()    {        return [            'product_id' => ['type' => 'uBigint', 'title' => '商品id', 'is_null' => false],            'group_id' => ['type' => 'uBigint', 'title' => '分组ID'],            'tag' => ['type' => 'string_20', 'title' => '英文标识,方便查询'],            'title' => ['type' => 'string', 'title' => '标题'],            'logo' => ['type' => 'string', 'title' => '封面图'],            'url' => ['type' => 'string', 'title' => '网址'],            'introduction' => ['type' => 'string', 'title' => '简介'],            'content' => ['type' => 'text', 'title' => '内容'],            'status' => ['type' => 'tinyint', 'title' => '状态', 'remark' => '1使用 2禁用',],        ];    }    public function init()    {        DB::table($this->schema)->insert([            'mid' => Str::random(12),            'product_id' => 1,            'group_id' => 1,            'tag' => 'home',            'title' => '广告标题',            'logo' => '',            'url' => 'https://www.ttyuweb.com',            'introduction' => '文字简介',            'content' => '内容',            'status' => 2,            'created_at' => time(),            'updated_at' => time()        ]);    }    /**     * Run the database seeds.     *     * @return void     */    public function run()    {        $this->schema = 'position_list';        $this->title = '广告列表';//        $this->category_type = 2;        $this->start();    }}
 |