mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
新增字段
This commit is contained in:
@@ -38,6 +38,11 @@ public class PileStationInfo extends BaseEntity {
|
||||
|
||||
private String deptId;
|
||||
|
||||
/**
|
||||
* 停车场配置表id
|
||||
*/
|
||||
private String parkingId;
|
||||
|
||||
/**
|
||||
* 二维码前缀
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,61 @@
|
||||
package com.jsowell.pile.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* TODO
|
||||
*
|
||||
* @Date 2023/8/24 16:50
|
||||
* @author Lemon
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class ThirdpartyParkingConfig {
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 停车场库名称
|
||||
*/
|
||||
private String parkingName;
|
||||
|
||||
/**
|
||||
* 停车场库appId
|
||||
*/
|
||||
private String appId;
|
||||
|
||||
/**
|
||||
* 停车场库secretKey
|
||||
*/
|
||||
private String secretKey;
|
||||
|
||||
/**
|
||||
* 停车场库商户id
|
||||
*/
|
||||
private String parkingMerchantId;
|
||||
|
||||
/**
|
||||
* 票券id
|
||||
*/
|
||||
private String couponId;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private String createBy;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 删除标识(0-正常;1-删除)
|
||||
*/
|
||||
private String delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user