123456789101112131415161718192021 |
- <?php
- namespace Home\Service;
- abstract class CommonService {
-
- protected function getM() {
- return M($this->getModelName());
- }
- protected function getD() {
- return D($this->getModelName());
- }
- protected function isRelation() {
- return true;
- }
- }
|