InventoryOrderAsset.php 467 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class InventoryOrderAsset extends Model
  5. {
  6. protected $table = "inventory_order_asset"; //指定表
  7. const CREATED_AT = null;
  8. const UPDATED_AT = null;
  9. protected $dateFormat = 'U';
  10. const STATE_ZERO = 0;
  11. const STATE_ONE = 1;
  12. const STATE_TWO = 2;
  13. public static $name = [
  14. 0 => '未盘点',
  15. 1 => '正常:已盘点',
  16. 2 => '异常:已盘点'
  17. ];
  18. }