You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
502B

  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. protected $visible = [
  13. self::COL_NAME_ID,
  14. self::COL_NAME_CUSTOMER_ID,
  15. self::COL_NAME_CUSTOMER_NAME,
  16. ];
  17. }