19 lines
251 B
Go
19 lines
251 B
Go
|
package dao
|
||
|
|
||
|
import "cutego/modules/demo/dataobject"
|
||
|
|
||
|
type StudentDao struct {
|
||
|
}
|
||
|
|
||
|
// Insert 增加
|
||
|
func (d StudentDao) Insert(record dataobject.Student) {
|
||
|
|
||
|
}
|
||
|
|
||
|
// 修改
|
||
|
// 删除
|
||
|
// 批量删除
|
||
|
// 分页查询
|
||
|
// 通过id查询
|
||
|
// 通过属性查询
|