RowTemplate.php 324 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2021/2/19
  6. * Time: 15:14
  7. */
  8. namespace app\backend\modules\order\services\row;
  9. class RowTemplate extends RowBase
  10. {
  11. public function enable()
  12. {
  13. return true;
  14. }
  15. public function getContent()
  16. {
  17. return ['aad','测试'];
  18. }
  19. }