| 1234567891011121314151617181920212223 |
- package com.shkpr.service.alambizplugin.dto;
- import lombok.Getter;
- import lombok.Setter;
- @Getter
- @Setter
- public class CommUUTNewRes {
- private String code = "0"; //0:表成功,其他:表失败
- private String uid = "";
- private String userId = "";
- private String title = "";
- public CommUUTNewRes() {
- }
- public CommUUTNewRes(String code, String uid, String userId, String title) {
- this.code = code;
- this.uid = uid;
- this.userId = userId;
- this.title = title;
- }
- }
|