| | |
| | | package com.boying.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.boying.common.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Transient; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 状态(0:未处理,1:已处理,2:未完成 3:撤销) |
| | | */ |
| | | private int status; |
| | | private Integer status; |
| | | /** |
| | | * 地点 |
| | | */ |
| | |
| | | /** |
| | | * 0:现场处罚 1:上级任务 2:违章拖车 |
| | | */ |
| | | private int type; |
| | | private Integer type; |
| | | |
| | | private String lng; |
| | | |
| | |
| | | /** |
| | | * 缴款状态(0:待缴费 1:已缴费 2:支付失败) |
| | | */ |
| | | private int payStatus; |
| | | private Integer payStatus; |
| | | /** |
| | | * 处罚金额 |
| | | */ |
| | | private double money; |
| | | /** |
| | | * 处罚金额大写 |
| | | */ |
| | | private String moneyStr; |
| | | /** |
| | | * 缴费时间 |
| | | */ |
| | |
| | | private String userName; |
| | | private String violationTypeName; |
| | | private String qrUrl; |
| | | |
| | | |
| | | //年份 |
| | | private String year; |
| | | |
| | | //文书号 |
| | | private String number; |
| | | |
| | | //当事人姓名 |
| | | private String personName; |
| | | |
| | | //当事人身份证号 |
| | | private String idCard; |
| | | |
| | | //当事人住址 |
| | | private String personAddress; |
| | | |
| | | //执法人1姓名 |
| | | private String zfName1; |
| | | //执法人2姓名 |
| | | private String zfName2; |
| | | |
| | | //执法人员1证号 |
| | | private String zfNum1; |
| | | //执法人员2证号 |
| | | private String zfNum2; |
| | | |
| | | //最后执行日期 |
| | | private String days; |
| | | |
| | | /** |
| | | * 流水号 |
| | | */ |
| | | private String code2; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String content; |
| | | |
| | | } |