OracleInvLotAtt.php 620 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * DB: FLUX/WMS_USER
  6. * TABLE: INV_LOT_ATT
  7. * EXPLAIN: 批次属性
  8. */
  9. use App\Traits\LogModelChanging;
  10. class OracleInvLotAtt extends Model
  11. {
  12. use LogModelChanging;
  13. public function __construct(array $attributes = [])
  14. {
  15. $this->timestamps=false;
  16. parent::__construct($attributes);
  17. }
  18. protected $connection="oracle";
  19. protected $table="INV_LOT_ATT";
  20. /*
  21. * column: LotAtt05 属性仓
  22. * LotAtt08 质量状态
  23. * LotAtt02 失效日期
  24. * LotAtt04 批号
  25. * */
  26. }