123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
- return array
- (
- # 表名
- 'name' => 'level',
- # 显示给用户看的名称
- 'lang' => '代理商等级',
- # 后台菜单排序
- 'order' => 3,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- 'order' => 'desc',
- ),
-
- 'name' => array
- (
- 'type' => 'varchar-200',
- 'name' => '名称',
- 'default' => '',
- 'desc' => '名称',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'level' => array
- (
- 'type' => 'int-11',
- 'name' => '等级数字',
- 'default' => '1',
- 'desc' => '等级数字',
- 'match' => 'is_numeric',
- 'update' => 'text',
- //'list' => true,
- 'order' => 'asc',
- ),
- 'num' => array
- (
- 'type' => 'int-11',
- 'name' => '直推人数-该等级可以分佣的直推人数',
- 'default' => '3',
- 'desc' => '直推人数',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- ),
- 'target' => array
- (
- 'type' => 'decimal-11,2',
- 'name' => '目标额-成为该等级的团队业绩总数,以万为单位',
- 'default' => '0',
- 'desc' => '目标额',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- ),
- 'value' => array
- (
- 'type' => 'int-11',
- 'name' => '补贴额-补贴团队政策,这里以百分比为单位,如输入10,就是每次推广分润10%',
- 'default' => '0',
- 'desc' => '补贴额',
- 'match' => 'is_numeric',
- 'update' => 'text',
- 'list' => true,
- ),
- 'target_value' => array
- (
- 'type' => 'decimal-11,2',
- 'name' => '奖励额-总业绩的百分比奖励,这里以百分比为单位,如输入10,就是总业绩10%奖励',
- 'default' => '0',
- 'desc' => '奖励额',
- 'match' => 'is_numeric',
- //'update' => 'text',
- //'list' => true,
- ),
- 'market_desc' => array
- (
- 'type' => 'text-255',
- 'name' => '提现协议',
- 'default' => '',
- 'desc' => '提现协议',
- 'match' => 'option',
- 'update' => 'editor',
- 'key' => '1',
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '创建时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- 'alter' => array
- (
- 5 => array
- (
- array('update', 'target', 'target', 'decimal-11,2 0 目标额'),
- array('update', 'target_value', 'target_value', 'decimal-11,2 0 奖励额'),
- ),
- 'version' => 5,
- ),
- 'default' => array
- (
- 'col' => 'id,name,level,target,value,state,cdate',
- 'value' => array
- (
- '1,"合伙人", 1, "30", "3", 1,' . DEVER_TIME,
- '2,"初级合伙人", 2, "60", "6", 1,' . DEVER_TIME,
- '3,"中级合伙人", 3, "100", "9", 1,' . DEVER_TIME,
- '4,"高级合伙人", 4, "300", "12", 1,' . DEVER_TIME,
- '5,"事业合伙人", 5, "500", "15", 1,' . DEVER_TIME,
- ),
- ),
- 'manage' => array
- (
- //'insert' => false,
- 'delete' => false,
- //'edit' => false,
- 'list_button' => array
- (
- //'fast' => array('编辑', '"level&where_id={id}&oper_save_jump=level&oper_table=level&oper_parent=level"'),
- )
- ),
- 'request' => array
- (
- 'getOne' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'type' => array('yes', 'in'),
- 'target' => array('yes', '<='),
- 'state' => 1,
- ),
- 'type' => 'one',
- 'order' => array('level' => 'desc', 'id' => 'desc'),
- 'col' => '*',
- ),
- ),
- );
|