feat: 添加项目类型(eventType)字段支持
- 在MartialProject实体类中添加eventType字段 - 在MartialProjectController中添加eventType查询支持 - 项目类型: 1-套路, 2-散打, 3-器械, 4-对练
This commit is contained in:
@@ -57,6 +57,10 @@ public class MartialProjectController extends BladeController {
|
|||||||
if (StringUtil.isNotBlank(project.getCategory())) {
|
if (StringUtil.isNotBlank(project.getCategory())) {
|
||||||
queryWrapper.like("category", project.getCategory());
|
queryWrapper.like("category", project.getCategory());
|
||||||
}
|
}
|
||||||
|
// 项目类型精确匹配
|
||||||
|
if (project.getEventType() != null) {
|
||||||
|
queryWrapper.eq("event_type", project.getEventType());
|
||||||
|
}
|
||||||
// 参赛类型精确匹配
|
// 参赛类型精确匹配
|
||||||
if (project.getType() != null) {
|
if (project.getType() != null) {
|
||||||
queryWrapper.eq("type", project.getType());
|
queryWrapper.eq("type", project.getType());
|
||||||
|
|||||||
@@ -63,6 +63,13 @@ public class MartialProject extends TenantEntity {
|
|||||||
@Schema(description = "组别")
|
@Schema(description = "组别")
|
||||||
private String category;
|
private String category;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目类型(1-套路,2-散打,3-器械,4-对练)
|
||||||
|
*/
|
||||||
|
@Schema(description = "项目类型")
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField("event_type")
|
||||||
|
private Integer eventType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 类型(1-个人,2-双人,3-集体)
|
* 类型(1-个人,2-双人,3-集体)
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user