| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- /**
- * DB: FLUX/WMS_USER
- * TABLE: INV_LOT_ATT
- * EXPLAIN: 批次属性
- */
- use App\Traits\LogModelChanging;
- class OracleInvLotAtt extends Model
- {
- use LogModelChanging;
- public function __construct(array $attributes = [])
- {
- $this->timestamps=false;
- parent::__construct($attributes);
- }
- protected $connection="oracle";
- protected $table="INV_LOT_ATT";
- /*
- * column: LotAtt05 属性仓
- * LotAtt08 质量状态
- * LotAtt02 失效日期
- * LotAtt04 批号
- * */
- }
|