mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
84 lines
1.3 KiB
Java
84 lines
1.3 KiB
Java
|
|
package com.jsowell.pile.domain;
|
|||
|
|
|
|||
|
|
import java.util.Date;
|
|||
|
|
import lombok.AllArgsConstructor;
|
|||
|
|
import lombok.Builder;
|
|||
|
|
import lombok.Data;
|
|||
|
|
import lombok.NoArgsConstructor;
|
|||
|
|
import lombok.experimental.Accessors;
|
|||
|
|
import lombok.experimental.SuperBuilder;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 充电停车优惠表
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@Accessors(chain = true)
|
|||
|
|
@SuperBuilder
|
|||
|
|
@Builder
|
|||
|
|
@AllArgsConstructor
|
|||
|
|
@NoArgsConstructor
|
|||
|
|
public class ChargeParkingDiscount {
|
|||
|
|
/**
|
|||
|
|
* 主键
|
|||
|
|
*/
|
|||
|
|
private Integer id;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 站点id
|
|||
|
|
*/
|
|||
|
|
private String stationId;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 道闸平台id
|
|||
|
|
*/
|
|||
|
|
private Integer parkingPlatformId;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 条件类型(1-固定电量;2-固定时长)
|
|||
|
|
*/
|
|||
|
|
private String conditionType;
|
|||
|
|
|
|||
|
|
private String conditionValue;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 优惠类型(1-减时间单位分钟; 2-减金额单位元)
|
|||
|
|
*/
|
|||
|
|
private String discountType;
|
|||
|
|
|
|||
|
|
private String discountValue;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 开始时间
|
|||
|
|
*/
|
|||
|
|
private Date startTime;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 结束时间
|
|||
|
|
*/
|
|||
|
|
private Date endTime;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 创建人
|
|||
|
|
*/
|
|||
|
|
private String createBy;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 创建时间
|
|||
|
|
*/
|
|||
|
|
private Date createTime;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 更新人
|
|||
|
|
*/
|
|||
|
|
private String updateBy;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 更新时间
|
|||
|
|
*/
|
|||
|
|
private Date updateTime;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 删除标识(0-正常; 1-删除)
|
|||
|
|
*/
|
|||
|
|
private String delFlag;
|
|||
|
|
}
|