package com.gkhy.safePlatform.targetDuty.model.dto.req; import java.sql.Timestamp; import com.gkhy.safePlatform.targetDuty.annotation.Query; public class TargetTypeQueryCriteria { @Query() private Long id; //分类名称 @Query(type = Query.Type.INNER_LIKE) private String typeName; //说明 @Query() private String memo; @Query() private Timestamp createTime; @Query() private Timestamp updateTime; public Long getId() { return id; } public void setId(Long id) { this.id = id; } //分类名称 public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } //说明 public String getMemo() { return memo; } public void setMemo(String memo) { this.memo = memo; } public Timestamp getCreateTime() { return createTime; } public void setCreateTime(Timestamp createTime) { this.createTime = createTime; } public Timestamp getUpdateTime() { return updateTime; } public void setUpdateTime(Timestamp updateTime) { this.updateTime = updateTime; } }