mirror of https://github.com/jeecgboot/jeecg-boot
feat: extra fee entities and CRUD
parent
70a0805032
commit
f5b88dcc70
|
@ -0,0 +1,20 @@
|
|||
package org.jeecg.modules.business.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class ExtraFeeResult {
|
||||
private String id;
|
||||
private java.lang.String createBy;
|
||||
private java.util.Date createTime;
|
||||
private String shop;
|
||||
private String enName;
|
||||
private String zhName;
|
||||
/** for "others" option*/
|
||||
private String description;
|
||||
private Integer quantity;
|
||||
private BigDecimal unitPrice;
|
||||
private String invoiceNumber;
|
||||
}
|
Loading…
Reference in New Issue