智慧停车场管理系统云平台源码
智慧停车场管理系统云服务器源码
public class ComSysRenew extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 续费ID */
@Excel(name = "序号", cellType = ColumnType.NUMERIC, prompt = "编号")
private Long renewId;
/** 续费ID */
@Excel(name = "车辆序号", cellType = ColumnType.NUMERIC, prompt = "车辆编号")
private Long carId;
/** 组织ID */
@Excel(name = "组织编号", type = Type.IMPORT)
private Long orgId;
/** 场站ID */
@Excel(name = "场站编号", type = Type.IMPORT)
private Long pkId;
/** 开始时间 */
@Excel(name = "续费前时间")
private Date origDate;
/** 结束时间 */
@Excel(name = "续费后时间")
private Date newDate;
private Integer rentnum;
/** 备注 */
@Excel(name = "备注")
private String remark;
/** 续费性别 */
@Excel(name = "卡类", readConverterExp = "1=月租车,2=免费车,3=储值车,4=黑名单")
private String carType;
@Excel(name = "金额", type = Type.IMPORT)
private BigDecimal amount;
/** 删除标志(0代表存在 2代表删除) */
private String delFlag;
/** 创建者 */
private String createBy;
/** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/** 更新者 */
private String updateBy;
/** 更新时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
/** 组织对象 */
@Excels({
@Excel(name = "车牌号码", targetAttr = "license", type = Type.EXPORT),
})
private ComSysCar car;
/** 组织对象 */
@Excels({
@Excel(name = "组织名称", targetAttr = "orgName", type = Type.EXPORT)
})
private SysOrg org;
/** 部门对象 */
@Excels({
@Excel(name = "停车场名称", targetAttr = "parkName", type = Type.EXPORT)
})
private ComSysPark park;
/** 车牌号码 */
@Excel(name = "车牌号码")
private String license;
public Long getRenewId() {
return renewId;
}
public void setRenewId(Long renewId) {
this.renewId = renewId;
}
public Long getCarId() {
return carId;
}
public void setCarId(Long carId) {
this.carId = carId;
}
public Long getOrgId() {
return orgId;
}
public void setOrgId(Long orgId) {
this.orgId = orgId;
}
public Long getPkId() {
return pkId;
}
public void setPkId(Long pkId) {
this.pkId = pkId;
}
public Date getOrigDate() {
return origDate;
}
public void setOrigDate(Date origDate) {
this.origDate = origDate;
}
public Date getNewDate() {
return newDate;
}
public void setNewDate(Date newDate) {
this.newDate = newDate;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getCarType() {
return carType;
}
public void setCarType(String carType) {
this.carType = carType;
}
public BigDecimal getAmount() {
return amount;
}
public void setAmount(BigDecimal amount) {
this.amount = amount;
}
public String getDelFlag() {
return delFlag;
}
public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public ComSysCar getCar() {
return car;
}
public void setCar(ComSysCar car) {
this.car = car;
}
public Integer getRentnum() {
return rentnum;
}
public void setRentnum(Integer rentnum) {
this.rentnum = rentnum;
}
public String getLicense() {
return license;
}
public void setLicense(String license) {
this.license = license;
}
@Override
public String toString() {
return "ComSysRenew [renewId=" + renewId + ", carId=" + carId + ", orgId=" + orgId + ", pkId=" + pkId
+ ", origDate=" + origDate + ", newDate=" + newDate + ", rentnum=" + rentnum + ", remark=" + remark
+ ", license=" + license + ", carType=" + carType + ", amount=" + amount + ", delFlag=" + delFlag
+ ", createBy=" + createBy + ", createTime=" + createTime + ", updateBy=" + updateBy + ", updateTime="
+ updateTime + ", car=" + car + "]";
}
}
- 上一篇:同济大学照明改造2期工程完工,来欣赏一波美图 2021/1/5
- 下一篇:上海关于全面推进上海城市数字化转型的意见公布 2021/1/5