package com.nanjing.water.entity.request; public class ReqSetSort { /** * 自增id * @required */ private Long id; /** * 排序值 * @required */ private Integer sort; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Integer getSort() { return sort; } public void setSort(Integer sort) { this.sort = sort; } }