StockInOrder.php 191 B

12345678910111213
  1. <?php
  2. namespace bizGhs\order\models;
  3. use bizGhs\base\models\Base;
  4. //入库订单
  5. class StockInOrder extends Base
  6. {
  7. public static function tableName()
  8. {
  9. return 'xhGhsStockInOrder';
  10. }
  11. }