| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspPlanLogParam
- *
- * @author hjp
- * @date 2022-8-13
- */
- public class BisInspPlanLogParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 组ID
- @ApiParam(name = "组ID")
- @ApiModelProperty(value = "组ID", name = "gId")
- private String gId;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 创建人
- @ApiParam(name = "创建人")
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- public BisInspPlanLogParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getGId() {
- return gId;
- }
- public void setGId(String gId) {
- this.gId = gId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- }
|