OrderInvoiceDto.java 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.qxgmat.dto.request;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserInvoice;
  4. @Dto(entity = UserInvoice.class)
  5. public class OrderInvoiceDto {
  6. private Integer orderId;
  7. private String invoiceType;
  8. private String title;
  9. private String identity;
  10. public Integer getOrderId() {
  11. return orderId;
  12. }
  13. public void setOrderId(Integer orderId) {
  14. this.orderId = orderId;
  15. }
  16. public String getInvoiceType() {
  17. return invoiceType;
  18. }
  19. public void setInvoiceType(String invoiceType) {
  20. this.invoiceType = invoiceType;
  21. }
  22. public String getTitle() {
  23. return title;
  24. }
  25. public void setTitle(String title) {
  26. this.title = title;
  27. }
  28. public String getIdentity() {
  29. return identity;
  30. }
  31. public void setIdentity(String identity) {
  32. this.identity = identity;
  33. }
  34. }