StockInDay.php 204 B

123456789101112
  1. <?php
  2. namespace bizGhs\stock\models;
  3. use bizGhs\base\models\Base;
  4. //花材入库记录
  5. class StockInDay extends Base
  6. {
  7. public static function tableName()
  8. {
  9. return 'xhStockInDay';
  10. }
  11. }