kongdeqiang
2 天以前 199202813dd8ca536ed2334f5eeb6aba3ad25b21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.boying.entity.vo;
 
import com.boying.entity.PaymentLog;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName MonthFeePayVo.java
 * @Description TODO
 * @createTime 2024年12月20日 16:36:00
 */
@Data
public class MonthFeePayVo extends PaymentLog {
 
       private Integer enterParkId;
       private Integer outParkId;
       private String code;
 
 
}