💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
##点卡管理 |字段|类型|Null|默认|注释| | -- | -- | -- | -- | -- | |id AUTO_INCREMENT|int(10)|否||自增ID| |card_state|int(2)||0|点卡的状态,0为正常,1为锁定| |type_id|int(2)|||1充值点卡,2课程充值卡| |card_price|int(5)|||卡的价格| |card_name|varchar(20)|||点卡卡号| |card_pass|varchar(10)|||点卡密码(猜测)不知道是什么| |cs_id|int(10)|否|0|父级ID(猜测)不知道是什么| |user_id|int(10)|否|0|用户ID| |use_state|int(2)|否|0|使用状态| |sale_state|int(2)|否|0|销售状态| |viptime|int(5)|否|0|VIP时间| |addtime|datetime|||增加时间| 相关的SQL语句如下: ``` DROP TABLE IF EXISTS `new_catd`; CREATE TABLE IF NOT EXISTS `new_card` ( `id` int(10) NOT NULL AUTO_INCREMENT, `card_state` int(2) NOT NULL DEFAULT '0', `type_id` int(2) DEFAULT NULL, `card_price` int(5) DEFAULT NULL, `card_name` varchar(20) DEFAULT NULL, `card_pass` varchar(10) DEFAULT NULL, `cs_id` int(10) DEFAULT '0', `user_id` int(10) DEFAULT '0', `use_state` int(2) NOT NULL DEFAULT '0', `sale_state` int(2) NOT NULL DEFAULT '0', `viptime` int(5) NOT NULL DEFAULT '0', `addtime` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; ```