| 12345678910111213141516171819202122232425262728293031 |
- package com.aijia.train.vo;
- import com.aijia.core.web.BaseRequest;
- /**
- * @author sh
- * @className TypeVO
- * @description idvo
- * @date 2021/7/26
- */
- public class AuditVO extends BaseRequest {
- private Integer type;
- private String userId;
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- }
|