| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- class SignGood extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_sign_goods';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
-
-
- }
|