Documentation
¶
Index ¶
- type StudentService
- func (studentService *StudentService) CreateStudent(student autocode.Student) (err error)
- func (studentService *StudentService) DeleteStudent(student autocode.Student) (err error)
- func (studentService *StudentService) DeleteStudentByIds(ids request.IdsReq) (err error)
- func (studentService *StudentService) GetStudent(id uint) (err error, student autocode.Student)
- func (studentService *StudentService) GetStudentInfoList(info autoCodeReq.StudentSearch) (err error, list interface{}, total int64)
- func (studentService *StudentService) UpdateStudent(student autocode.Student) (err error)
- type UserInfoService
- func (userInfoService *UserInfoService) CreateUserInfo(userInfo autocode.UserInfo) (err error)
- func (userInfoService *UserInfoService) DeleteUserInfo(userInfo autocode.UserInfo) (err error)
- func (userInfoService *UserInfoService) DeleteUserInfoByIds(ids request.IdsReq) (err error)
- func (userInfoService *UserInfoService) GetUserInfo(id uint) (err error, userInfo autocode.UserInfo)
- func (userInfoService *UserInfoService) GetUserInfoInfoList(info autoCodeReq.UserInfoSearch) (err error, list interface{}, total int64)
- func (userInfoService *UserInfoService) UpdateUserInfo(userInfo autocode.UserInfo) (err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StudentService ¶
type StudentService struct { }
func (*StudentService) CreateStudent ¶
func (studentService *StudentService) CreateStudent(student autocode.Student) (err error)
CreateStudent 创建Student记录 Author [piexlmax](https://github.com/piexlmax)
func (*StudentService) DeleteStudent ¶
func (studentService *StudentService) DeleteStudent(student autocode.Student) (err error)
DeleteStudent 删除Student记录 Author [piexlmax](https://github.com/piexlmax)
func (*StudentService) DeleteStudentByIds ¶
func (studentService *StudentService) DeleteStudentByIds(ids request.IdsReq) (err error)
DeleteStudentByIds 批量删除Student记录 Author [piexlmax](https://github.com/piexlmax)
func (*StudentService) GetStudent ¶
func (studentService *StudentService) GetStudent(id uint) (err error, student autocode.Student)
GetStudent 根据id获取Student记录 Author [piexlmax](https://github.com/piexlmax)
func (*StudentService) GetStudentInfoList ¶
func (studentService *StudentService) GetStudentInfoList(info autoCodeReq.StudentSearch) (err error, list interface{}, total int64)
GetStudentInfoList 分页获取Student记录 Author [piexlmax](https://github.com/piexlmax)
func (*StudentService) UpdateStudent ¶
func (studentService *StudentService) UpdateStudent(student autocode.Student) (err error)
UpdateStudent 更新Student记录 Author [piexlmax](https://github.com/piexlmax)
type UserInfoService ¶
type UserInfoService struct { }
func (*UserInfoService) CreateUserInfo ¶
func (userInfoService *UserInfoService) CreateUserInfo(userInfo autocode.UserInfo) (err error)
CreateUserInfo 创建UserInfo记录 Author [piexlmax](https://github.com/piexlmax)
func (*UserInfoService) DeleteUserInfo ¶
func (userInfoService *UserInfoService) DeleteUserInfo(userInfo autocode.UserInfo) (err error)
DeleteUserInfo 删除UserInfo记录 Author [piexlmax](https://github.com/piexlmax)
func (*UserInfoService) DeleteUserInfoByIds ¶
func (userInfoService *UserInfoService) DeleteUserInfoByIds(ids request.IdsReq) (err error)
DeleteUserInfoByIds 批量删除UserInfo记录 Author [piexlmax](https://github.com/piexlmax)
func (*UserInfoService) GetUserInfo ¶
func (userInfoService *UserInfoService) GetUserInfo(id uint) (err error, userInfo autocode.UserInfo)
GetUserInfo 根据id获取UserInfo记录 Author [piexlmax](https://github.com/piexlmax)
func (*UserInfoService) GetUserInfoInfoList ¶
func (userInfoService *UserInfoService) GetUserInfoInfoList(info autoCodeReq.UserInfoSearch) (err error, list interface{}, total int64)
GetUserInfoInfoList 分页获取UserInfo记录 Author [piexlmax](https://github.com/piexlmax)
func (*UserInfoService) UpdateUserInfo ¶
func (userInfoService *UserInfoService) UpdateUserInfo(userInfo autocode.UserInfo) (err error)
UpdateUserInfo 更新UserInfo记录 Author [piexlmax](https://github.com/piexlmax)