15 lines
442 B
Go
15 lines
442 B
Go
package model
|
|
|
|
import configmodel "blazing/modules/config/model"
|
|
|
|
// Deprecated: 签到配置已迁移到 modules/config/model/sign.go。
|
|
const TableNameSignIn = configmodel.TableNameSignIn
|
|
|
|
// Deprecated: 签到配置已迁移到 modules/config/model/sign.go。
|
|
type SignIn = configmodel.SignIn
|
|
|
|
// Deprecated: 签到配置已迁移到 modules/config/model/sign.go。
|
|
func NewSignIn() *configmodel.SignIn {
|
|
return configmodel.NewSignIn()
|
|
}
|