源战役
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

12 Zeilen
660 B

  1. -- zmh
  2. -- 材料上交管理
  3. CREATE TABLE `unite_buff_mgr` (
  4. `act` int(11) NOT NULL DEFAULT '0' COMMENT '活动',
  5. `stime` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
  6. `etime` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
  7. `process` int(11) NOT NULL DEFAULT '0' COMMENT '全服进度',
  8. `click` int(11) NOT NULL DEFAULT '0' COMMENT '已累计',
  9. `need_add` int(11) NOT NULL DEFAULT '0' COMMENT '时段需累计',
  10. `add_per` int(11) NOT NULL DEFAULT '0' COMMENT '单次增加',
  11. `buffs` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '加成BUFF',
  12. PRIMARY KEY (`act`)
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='材料上交管理';