123456789101112131415161718192021222324 |
- <?php
- namespace app\admin\model;
- use support\Db;
- use support\Model;
- /**
- * 会员健康基础数据Log模型
- * Class Users
- * @package app\admin\model
- */
- class UserBasicHealthDataLog extends Model
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'user_basic_health_data_log';
- public $timestamps = false;
- }
|