1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.jevon.vo.req; /** * @author chen * @version 1.0 * @date 2019/10/11 0011 14:41 */ public class ScheduleIdReqVo { private int scheduleId ; public int getScheduleId() { return scheduleId; } public void setScheduleId(int scheduleId) { this.scheduleId = scheduleId; } }