Files
OMS/app/organization/dbschema/cos.php
2025-12-28 23:13:25 +08:00

131 lines
4.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
$db['cos'] = [
'columns' => [
'cos_id' => [
'type' => 'int unsigned',
'required' => true,
'pkey' => true,
'extra' => 'auto_increment',
'label' => '企业组织架构ID',
],
'cos_code' => array(
'type' => 'varchar(32)',
'required' => true,
'label' => '企业组织编码',
'in_list' => true,
'default_in_list' => true,
'searchtype' => 'nequal',
'filtertype' => 'normal',
'filterdefault' => true,
),
'cos_name' => array(
'type' => 'varchar(50)',
'label' => '企业组织名称',
'editable' => false,
'is_title' => true,
'in_list' => true,
'default_in_list' => true,
),
'cos_type' => [
'type' => [
'bbu' => '销售团队',
'betc' => '贸易公司',
'bs' => '经销商',
'shop' => '经销店铺',
],
'label' => '企业组织类型',
'editable' => false,
'is_title' => true,
'in_list' => true,
'default_in_list' => true,
],
'parent_id' => [
'type' => 'int unsigned',
'editable' => false,
'required' => true,
'label' => '父ID',
],
'cos_path' => [
'type' => 'varchar(255)',
'label' => '路径',
'editable' => false,
'width' => 110,
'in_list' => true,
'default_in_list' => true,
],
'is_leaf' => [
'type' => "enum('1', '0')",
'editable' => false,
'default' => '1',
'label' => '是否叶子节点',
'width' => 110,
'in_list' => true,
'default_in_list' => true,
],
'child_count' => [
'type' => 'int unsigned',
'editable' => false,
'label' => '子节点数',
'width' => 100,
'in_list' => true,
'default_in_list' => true,
],
'op_name' => [
'type' => 'varchar(25)',
'editable' => false,
'label' => '操作人',
'width' => 140,
'in_list' => true,
'default_in_list' => true,
],
'out_bind_id' => [
'type' => 'text',
'editable' => false,
'label' => '绑定集团外部公司组织ID',
'width' => 140,
'in_list' => true,
'default_in_list' => true,
],
'at_time' => [
'type' => 'TIMESTAMP',
'label' => '创建时间',
'default' => 'CURRENT_TIMESTAMP',
'width' => 120,
'in_list' => false,
],
'up_time' => [
'type' => 'TIMESTAMP',
'label' => '更新时间',
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
'width' => 120,
'in_list' => false,
],
],
'index' => [
'ind_cos_code' => [
'columns' => [
0 => 'cos_code',
],
'prefix' => 'unique',
],
'ind_cos_type' => [
'columns' => [
0 => 'cos_type',
],
],
'ind_parent_id' => [
'columns' => [
0 => 'parent_id',
],
],
],
'comment' => '企业组织架构表',
'engine' => 'innodb',
'version' => '$Rev: $',
];