123456789101112131415161718192021222324 |
- --[[
- Descripttion:邀请码
- version:
- Author: Neo,Huang
- Date: 2023-11-15 22:34:35
- LastEditors: Neo,Huang
- LastEditTime: 2023-11-15 23:58:55
- --]]
- local root = class("sharecode", require("base.baseModule"))
- function root:ctor(sharecode)
- root.super.ctor(self, sharecode, "sharecode", "sharecode", true, false)
- self.sharecode = sharecode
- end
- function root:mysql_get_init_columns()
- return {
- sharecode = "varchar(20) NOT NULL COMMENT '邀请码'",
- uid = "bigint(20) unsigned NOT NULL COMMENT '用户ID'"
- }
- end
- return root
|