13 lines
171 B
PHP
13 lines
171 B
PHP
<?php
|
|
namespace app\store\model\food;
|
|
|
|
use app\common\model\food\Comment as CommentModel;
|
|
|
|
/**
|
|
* 用户评论
|
|
*/
|
|
class Comment extends CommentModel
|
|
{
|
|
|
|
}
|