1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.qxgmat.dto.request;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.UserInvoice;
- @Dto(entity = UserInvoice.class)
- public class OrderInvoiceDto {
- private Integer orderId;
- private String invoiceType;
- private String title;
- private String identity;
- public Integer getOrderId() {
- return orderId;
- }
- public void setOrderId(Integer orderId) {
- this.orderId = orderId;
- }
- public String getInvoiceType() {
- return invoiceType;
- }
- public void setInvoiceType(String invoiceType) {
- this.invoiceType = invoiceType;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getIdentity() {
- return identity;
- }
- public void setIdentity(String identity) {
- this.identity = identity;
- }
- }
|