1234567891011121314151617 |
- <?php
- namespace app\common\model;
- use think\Model;
- /**
- * @property string mobile
- * @property string address
- * @property string name
- */
- class OrderAddress extends Model
- {
- public function to(){
- return Area::getNameString($this['area']);
- }
- }
|