package com.nanjing.water.entity.request; public class ReqOperate { /** * 业务id * @required */ private Long id; /** * 操作备注 * @required */ private String comment; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }