|
|
@@ -1,27 +0,0 @@
|
|
|
-package com.aoyang.tms.controller.param;
|
|
|
-
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import io.swagger.annotations.ApiModel;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author zhuangxl
|
|
|
- * @description 通用id查询参数
|
|
|
- * @since 2021-03-24 9:43
|
|
|
- */
|
|
|
-@ApiModel(value = "通用id参数", description = "通用id参数")
|
|
|
-public class IdParam {
|
|
|
-
|
|
|
- @ApiModelProperty(value = "通用id参数")
|
|
|
- @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
- private Long id;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public IdParam setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- return this;
|
|
|
- }
|
|
|
-}
|