Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

18 lines
367B

  1. <?php
  2. namespace App\Models\Htpms;
  3. use Illuminate\Database\Eloquent\Model;
  4. class MstCustomer extends Model
  5. {
  6. const COL_NAME_ID = 'id';
  7. const COL_NAME_CUSTOMER_ID = 'customer_id';
  8. const COL_NAME_CUSTOMER_NAME = 'customer_name';
  9. protected $connection = 'htpms';
  10. protected $table = 'mst_customer';
  11. protected $fillable = []; // 参照専用
  12. }