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.

16 lines
318B

  1. <?php
  2. namespace App\Kintone\Models;
  3. class Customer extends KintoneModel
  4. {
  5. const FIELD_CUSTOMER_NAME = "顧客名";
  6. const FIELD_CUSTOMER_MEMO = "備考";
  7. protected array $fields = [
  8. self::FIELD_CUSTOMER_NAME => FieldType::STRING,
  9. self::FIELD_CUSTOMER_MEMO => FieldType::STRING,
  10. ];
  11. }