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.
|
- <?php
-
- namespace App\Models;
-
- abstract class ColumnName
- {
- // 共通
- const ID = 'id';
- const UPDATED_AT = 'updated_at';
- const UPDATED_BY = 'updated_by';
- const CREATED_AT = 'created_at';
- const CREATED_BY = 'created_by';
- const DELETED_AT = 'deleted_at';
- const HISTORY_ID = 'history_id';
-
- // 業務
- const CONTRACT_ID = 'contract_id';
- const USER_ID = 'user_id';
- const RECEIPT_ISSUING_ORDER_ID = "receipt_issuing_order_id";
- const SMS_SEND_ORDER_ID = "sms_send_order_id";
- const SMS_PROVIDER_ID = "sms_provider_id";
- const EMAIL_ID = "email_id";
- }
|