OracleInvLotAtt.php 415 B

12345678910111213141516171819202122
  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. class OracleInvLotAtt extends Model
  10. {
  11. protected $connection="oracle";
  12. protected $table="INV_LOT_ATT";
  13. /*
  14. * column: LotAtt05 属性仓
  15. * LotAtt08 质量状态
  16. * LotAtt02 失效日期
  17. * LotAtt04 批号
  18. * */
  19. }