Package | Description |
---|---|
cn.jsj.onclock.controller | |
cn.jsj.onclock.dao | |
cn.jsj.onclock.service | |
cn.jsj.onclock.service.impl |
Modifier and Type | Method and Description |
---|---|
Result<LabelEnt> |
LabelController.allLabel(Integer pageNum,
Integer pageSize)
查询全部的签到标签
|
Result<LabelEnt> |
LabelController.likeTitle(String pareTitle)
模糊查询标签
|
Result<LabelEnt> |
LabelController.likeTitle(String prefix,
Integer pageNum,
Integer pageSize)
查询符合名称前缀的标签列表
|
Result<LabelEnt> |
LabelController.oneLabel(Long labelId)
Id获取标签实体 (不需要验证用户身份)
|
Modifier and Type | Method and Description |
---|---|
Result<Object> |
LabelController.insertOne(LabelEnt labelEnt)
管理员录入标签卡信息
|
Result<Object> |
LabelController.updateTitle(LabelEnt labelEnt)
管理员更新标签名称
|
Modifier and Type | Method and Description |
---|---|
LabelEnt |
LabelDao.getLabelEntById(Long labelId)
Id查询标签实体
|
LabelEnt |
LabelDao.getLabelEntByLabelNum(String labelNum)
标签唯一标识查询标签实体
|
Modifier and Type | Method and Description |
---|---|
List<LabelEnt> |
LabelDao.listAllLabel()
查询所有的签到标签
|
List<LabelEnt> |
LabelDao.listLabelLikeTitleAllName(String pareTitle)
全名称模糊查询标签列表
|
List<LabelEnt> |
LabelDao.listLabelLikeTitlePrefix(String titlePrefix)
查询符合前缀规则的标签列表
|
Modifier and Type | Method and Description |
---|---|
void |
LabelDao.insertLabel(LabelEnt labelEnt)
新增标签实体 (需要保证除id之外的所有属性参数值有效)
|
Modifier and Type | Method and Description |
---|---|
LabelEnt |
LabelService.getOneLabelById(Long labelId)
Id获取标签实体 (不需要验证用户身份)
|
Modifier and Type | Method and Description |
---|---|
List<LabelEnt> |
LabelService.listAllLabel(Integer pageNum,
Integer pageSize)
查询全部的签到标签
|
List<LabelEnt> |
LabelService.listLabelLikeTitle(@NotBlank @Length(max=60) String pareTitle)
模糊查询标签
|
List<LabelEnt> |
LabelService.listLabelLikeTitlePrefix(@NotBlank @Length(max=60) String titlePrefix,
Integer pageNum,
Integer pageSize)
查询符合名称前缀的标签列表
|
Modifier and Type | Method and Description |
---|---|
LabelEnt |
LabelServiceImpl.getOneLabelById(Long labelId)
Id获取标签实体 (不需要验证用户身份)
|
Modifier and Type | Method and Description |
---|---|
List<LabelEnt> |
LabelServiceImpl.listAllLabel(Integer pageNum,
Integer pageSize)
查询全部的签到标签
|
List<LabelEnt> |
LabelServiceImpl.listLabelLikeTitle(String pareTitle)
模糊查询标签
|
List<LabelEnt> |
LabelServiceImpl.listLabelLikeTitlePrefix(String titlePrefix,
Integer pageNum,
Integer pageSize)
查询符合名称前缀的标签列表
|
Copyright © 2022. All rights reserved.