You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
314 B
Lua
19 lines
314 B
Lua
local skynet = require "skynet"
|
|
local cjson = require "cjson"
|
|
local dateutils = require "dateutils"
|
|
require "functions"
|
|
|
|
--邮件模型
|
|
|
|
local towermodel = {}
|
|
|
|
function towermodel:init(laststatus)
|
|
self.laststatus = laststatus
|
|
end
|
|
|
|
function towermodel:openbox()
|
|
self.laststatus = 1
|
|
end
|
|
|
|
return towermodel
|