1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.doumee.dao.business.dto.h5;
|
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| @Data
| public class CustomerPayCreateDTO {
| /** 0电表 1空调 2账单 */
| private Integer orderType;
| private Integer electricalId;
| private Integer billId;
| private BigDecimal amount;
| private String remark;
| private String openid;
| }
|
|