領収証発行サービス
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.

24 lines
598B

  1. <?php
  2. namespace App\Models;
  3. abstract class ColumnName
  4. {
  5. // 共通
  6. const ID = 'id';
  7. const UPDATED_AT = 'updated_at';
  8. const UPDATED_BY = 'updated_by';
  9. const CREATED_AT = 'created_at';
  10. const CREATED_BY = 'created_by';
  11. const DELETED_AT = 'deleted_at';
  12. const HISTORY_ID = 'history_id';
  13. // 業務
  14. const CONTRACT_ID = 'contract_id';
  15. const USER_ID = 'user_id';
  16. const RECEIPT_ISSUING_ORDER_ID = "receipt_issuing_order_id";
  17. const SMS_SEND_ORDER_ID = "sms_send_order_id";
  18. const SMS_PROVIDER_ID = "sms_provider_id";
  19. const EMAIL_ID = "email_id";
  20. }