| 123456789101112131415161718192021222324252627 |
- <?php
- namespace app\common\model\agreement;
- use app\common\model\BaseModel;
- class Agreement extends BaseModel
- {
- /**
- * @return string
- */
- public static function tablePk(): string
- {
- return 'agreement_id';
- }
- /**
- * @return string
- */
- public static function tableName(): string
- {
- return 'user_agreement';
- }
- }
|