+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_guest_service:/tablelist/okayapi_landi_guest_service.html


-- MySQL Table okayapi_landi_guest_service
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_guest_service` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `free_money` double NULL COMMENT '赠送金额',
    `free_reason` varchar(64) NULL COMMENT '赠送理由',
    `guest_id` int(10) NULL COMMENT '',
    `room_number` varchar(64) NULL COMMENT '',
    `okayapi_landi_guest_service_name` varchar(64) NULL COMMENT '',
    `lecharge` double NULL COMMENT '',
    `lecount` int(11) NULL COMMENT '',
    `spcharge` double NULL COMMENT '',
    `spcount` int(11) NULL COMMENT '',
    `turn` int(11) NULL COMMENT '',
    `okayapi_landi_guest_service_comment` varchar(256) NULL COMMENT '',
    `free` int(11) NULL COMMENT '',
    `sys_state` int(11) NULL DEFAULT '1' COMMENT '',
    KEY `free_money` (`free_money`),
    KEY `free_reason` (`free_reason`),
    KEY `guest_id` (`guest_id`),
    KEY `room_number` (`room_number`),
    KEY `okayapi_landi_guest_service_name` (`okayapi_landi_guest_service_name`),
    KEY `lecharge` (`lecharge`),
    KEY `lecount` (`lecount`),
    KEY `spcharge` (`spcharge`),
    KEY `spcount` (`spcount`),
    KEY `turn` (`turn`),
    KEY `okayapi_landi_guest_service_comment` (`okayapi_landi_guest_service_comment`),
    KEY `free` (`free`),
    KEY `sys_state` (`sys_state`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-贵宾服务';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-13 of 13 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
free_moneydouble赠送金额
free_reasonvarchar(64)赠送理由
guest_idint(10)Normal Index
room_numbervarchar(64)Normal Index
okayapi_landi_guest_service_namevarchar(64)
lechargedouble
lecountint(11)
spchargedouble
spcountint(11)
turnint(11)
okayapi_landi_guest_service_commentvarchar(256)
freeint(11)
sys_stateint(11)11

Guess You Like

MySQL Table Design okayapi_landi_agent_purchase

MySQL Table Design okayapi_landi_contract_income

MySQL Table Design okayapi_landi_cost_le

MySQL Table Design okayapi_landi_daily_service

MySQL Table Design okayapi_landi_diary_reminder

MySQL Table Design okayapi_landi_drinking_water

MySQL Table Design okayapi_landi_emergency_problem

MySQL Table Design okayapi_landi_fac_sta

MySQL Table Design okayapi_landi_flight_picking

MySQL Table Design okayapi_landi_grocery_item

MySQL Table Design okayapi_landi_grocery_running

MySQL Table Design okayapi_landi_guest

MySQL Table Design okayapi_landi_guest_balance

MySQL Table Design okayapi_landi_host

MySQL Table Design okayapi_landi_income

MySQL Table Design okayapi_landi_intern

MySQL Table Design okayapi_landi_invoice

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

MySQL Table Design okayapi_landi_mail_reminder

TOP ↑