1234567891011121314151617181920212223242526272829303132 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2021-12-21 14:37:58
- ////////////////////
- /**
- * Static Model score 学院积分兑换道具表
- */
- class sm_score
- {
- /**
- * @var Int32 用途未知!!请到数据库中添加字段注释。
- */
- public $tid;
- /**
- * @var Int32 学分累计值 default(0)
- */
- public $score;
- /**
- * @var String 兑换道具
- */
- public $items;
- }
|