| 12345678910111213141516171819202122 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- /**
- * DB: FLUX/WMS_USER
- * TABLE: INV_LOT_ATT
- * EXPLAIN: 批次属性
- */
- class OracleInvLotAtt extends Model
- {
- protected $connection="oracle";
- protected $table="INV_LOT_ATT";
- /*
- * column: LotAtt05 属性仓
- * LotAtt08 质量状态
- * LotAtt02 失效日期
- * LotAtt04 批号
- * */
- }
|