OracleInvLotAtt.php 454 B

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