update
This commit is contained in:
97
inc/Hura8/Interfaces/TableName.php
Normal file
97
inc/Hura8/Interfaces/TableName.php
Normal file
@@ -0,0 +1,97 @@
|
||||
<?php
|
||||
|
||||
namespace Hura8\Interfaces;
|
||||
|
||||
final class TableName
|
||||
{
|
||||
|
||||
const COLLECT_FORM = 'tb_collect_form';
|
||||
const COLLECT_FORM_FILTER = 'tb_collect_form_filter';
|
||||
|
||||
const TEMPLATE = "tb_template";
|
||||
const TEMPLATE_SET = 'tb_template_set';
|
||||
const TEMPLATE_HISTORY = "tb_template_history";
|
||||
|
||||
const MEDIA = 'tb_media_upload';
|
||||
|
||||
const COMMENT = "tb_user_comment";
|
||||
const COMMENT_REPLY = "tb_user_comment_reply";
|
||||
|
||||
const PRODUCT = 'tb_product';
|
||||
const PRODUCT_INFO = 'tb_product_info';
|
||||
const PRODUCT_CATEGORY = 'tb_product_category';
|
||||
const PRODUCT_CATEGORY_INFO = 'tb_product_category_info';
|
||||
const PRODUCT_PER_CATEGORY = 'tb_product_per_category';
|
||||
|
||||
const PRODUCT_VARIANT = 'tb_product_variant';
|
||||
const PRODUCT_IMAGE_NAME = 'tb_product_image';
|
||||
const PRODUCT_IMAGE_STOCK = 'tb_product_image_stock';
|
||||
const PRODUCT_ACCESSORY = 'tb_product_accessory';
|
||||
const PRODUCT_HOT = 'tb_product_hot';
|
||||
const PRODUCT_COLLECTION = 'tb_collection';
|
||||
const PRODUCT_PER_COLLECTION = 'tb_collection_product';
|
||||
const PRODUCT_FILTER = 'tb_product_filter';
|
||||
const PRODUCT_PER_ATTRIBUTE = 'tb_product_attribute';
|
||||
|
||||
|
||||
const ATTRIBUTE = 'tb_attribute';
|
||||
const ATTRIBUTE_INFO = 'tb_attribute_info';
|
||||
const ATTRIBUTE_CATEGORY = 'tb_attribute_category';
|
||||
const ATTRIBUTE_VALUE = 'tb_attribute_value';
|
||||
|
||||
const ARTICLE = 'tb_article';
|
||||
const ARTICLE_COMMENT = 'tb_article_comment';
|
||||
const ARTICLE_CATEGORY = 'tb_article_category';
|
||||
const ARTICLE_INFO = 'tb_article_info';
|
||||
const ARTICLE_PER_CATEGORY = 'tb_article_per_category';
|
||||
const ARTICLE_IMAGE = 'tb_article_image';
|
||||
|
||||
const BRAND = 'tb_brand';
|
||||
|
||||
const COUPON = 'tb_coupon';
|
||||
const COUPON_USE = 'tb_coupon_use';
|
||||
|
||||
const DEAL = 'tb_deal';
|
||||
const DEAL_CONTENT = 'tb_deal_content';
|
||||
|
||||
const COMBO_DEAL = 'tb_combo_deal';
|
||||
const COMBO_DEAL_DETAIL = 'tb_combo_deal_detail';
|
||||
|
||||
const ORDER = 'tb_order';
|
||||
const ORDER_ITEM = 'tb_order_detail_new';
|
||||
|
||||
const CUSTOMER_POINT = "tb_customer_point";
|
||||
const CUSTOMER = "tb_customer";
|
||||
const CUSTOMER_GROUP = "tb_customer_group";
|
||||
const CUSTOMER_PER_GROUP = 'tb_customer_group_list';
|
||||
const CUSTOMER_ADDRESS = "tb_customer_address";
|
||||
|
||||
const CUSTOMER_UPLOAD = 'tb_user_upload';
|
||||
const CUSTOMER_LIKE = 'tb_user_like';
|
||||
const CUSTOMER_PREFERENCE = "tb_user_preference";
|
||||
const CUSTOMER_CONTACT = "tb_customer_contact";
|
||||
|
||||
const WEB_USER = "tb_web_user_info";
|
||||
|
||||
const PAYGATE = 'tb_paygate';
|
||||
const PAY_METHOD = 'tb_pay_method';
|
||||
const SHIP_METHOD = 'tb_shipping_method';
|
||||
|
||||
const REPORT_VISIT_SUMMARY = 'tb_visit_summary';
|
||||
const REPORT_ERROR_PAGE = 'tb_report_error_page';
|
||||
const REPORT_REFERER_DOMAIN = 'tb_visit_referer_domain';
|
||||
const REPORT_REFERER_SUMMARY = 'tb_visit_referer_summary';
|
||||
|
||||
const PROVINCE = "tb_province_list";
|
||||
const PROVINCE_DISTRICT = "tb_province_district_list";
|
||||
const PROVINCE_WARD = "tb_province_ward_list";
|
||||
|
||||
const DOMAIN = 'tb_domain';
|
||||
const URL = 'tb_url';
|
||||
const URL_META = 'tb_url_meta';
|
||||
|
||||
const STAFF = "tb_staff";
|
||||
const DEPARTMENT = 'tb_department';
|
||||
const STAFF_LOG = "tb_staff_log";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user