2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > 智慧停车场管理系统php 智慧停车场管理系统云平台源码

智慧停车场管理系统php 智慧停车场管理系统云平台源码

时间:2018-10-01 18:58:44

相关推荐

智慧停车场管理系统php 智慧停车场管理系统云平台源码

智慧停车场管理系统云服务器源码

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) {

Id = 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 + "]";

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。