1234567891011121314151617 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class PurchaseOrderInfoForOutBound extends Model
- {
- protected $table = "purchase_order_info_for_outbound"; //指定表
- const CREATED_AT = null;
- const UPDATED_AT = null;
- protected $dateFormat = 'U';
- const is_not_use = 0;
- const is_use = 1;
- const type_one = 1;
- const prefix = 'CGCk';
- }
|