CommUUTNewRes.java 544 B

1234567891011121314151617181920212223
  1. package com.shkpr.service.alambizplugin.dto;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. @Getter
  5. @Setter
  6. public class CommUUTNewRes {
  7. private String code = "0"; //0:表成功,其他:表失败
  8. private String uid = "";
  9. private String userId = "";
  10. private String title = "";
  11. public CommUUTNewRes() {
  12. }
  13. public CommUUTNewRes(String code, String uid, String userId, String title) {
  14. this.code = code;
  15. this.uid = uid;
  16. this.userId = userId;
  17. this.title = title;
  18. }
  19. }