package com.gkhy.safePlatform.targetDuty.model.dto.req;
|
|
import java.sql.Timestamp;
|
import com.gkhy.safePlatform.targetDuty.annotation.Query;
|
|
public class ExamineTemplateQueryCriteria {
|
|
//标准标题
|
@Query(type = Query.Type.INNER_LIKE)
|
private String title;
|
//标准标题
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
}
|