e535840ff76472051780648f5d133db8e562ba2e.svn-base 469 B

123456789101112131415161718192021222324252627282930
  1. package cn.com.goldenwater.dcproj.dto;
  2. public class PlanAllDelDto {
  3. /**
  4. * 组id
  5. */
  6. public String groupId;
  7. /**
  8. * del id
  9. */
  10. public String delId;
  11. public String getGroupId() {
  12. return groupId;
  13. }
  14. public void setGroupId(String groupId) {
  15. this.groupId = groupId;
  16. }
  17. public String getDelId() {
  18. return delId;
  19. }
  20. public void setDelId(String delId) {
  21. this.delId = delId;
  22. }
  23. }