zhangzengfei
2024-04-18 1bc9b974469d6959c900b7a083fec2689e5cdd8e
1
2
3
4
5
6
7
8
9
10
11
12
13
package repository
 
type SystemRepository struct {
}
 
func NewSystemRepository() SystemRepository {
    return SystemRepository{}
}
 
func (s SystemRepository) Test() {
 
    return
}