Goods.php 229 B

12345678910111213141516
  1. <?php
  2. namespace biz\goods\models;
  3. use biz\base\models\Base;
  4. class Goods extends Base
  5. {
  6. // 库存充足
  7. public const FULL_STOCK = -100000;
  8. public static function tableName()
  9. {
  10. return 'xhGoods';
  11. }
  12. }