MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
setting_id | int(11) | 否 | 客户规则限制ID | 无索引 | ||
user_id | bigint(20) | 是 | 用户id | 无索引 | ||
dept_id | int(11) | 是 | 部门ID | 无索引 | ||
yesapi_72crm_crm_customer_settinguser_type | int(1) | 是 | 1 员工 2 部门 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:CRM-员工拥有以及锁定客户员工关联表:https://open.yesapi.cn/tablelist/yesapi_72crm_crm_customer_settinguser.html
-- 数据库大全:CRM-员工拥有以及锁定客户员工关联表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_72crm_crm_customer_settinguser` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`setting_id` int(11) NULL COMMENT '客户规则限制ID',
`user_id` bigint(20) NULL COMMENT '用户id',
`dept_id` int(11) NULL COMMENT '部门ID',
`yesapi_72crm_crm_customer_settinguser_type` int(1) NULL COMMENT '1 员工 2 部门',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-员工拥有以及锁定客户员工关联表';
复制后,到数据库执行,即可创建此数据库表。