| 123456789101112131415161718192021 |
- <?php
- namespace App;
- use App\Traits\ModelTimeFormat;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelLogChanging;
- /**
- * DB: FLUX/WMS_USER
- * TABLE: BAS_LOTID
- * EXPLAIN: 批次属性规则表
- */
- class OracleBasLotId extends Model
- {
- use ModelTimeFormat;
- use ModelLogChanging;
- protected $connection="oracle";
- protected $table="BAS_LOTID";
- }
|