mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
77 lines
1.2 KiB
Java
77 lines
1.2 KiB
Java
|
|
package com.jsowell.pile.domain;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
import lombok.experimental.Accessors;
|
||
|
|
import lombok.experimental.SuperBuilder;
|
||
|
|
|
||
|
|
import java.math.BigDecimal;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 站点分成配置表
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@Accessors(chain = true)
|
||
|
|
@SuperBuilder
|
||
|
|
@Builder
|
||
|
|
@AllArgsConstructor
|
||
|
|
@NoArgsConstructor
|
||
|
|
public class StationSplitConfig {
|
||
|
|
/**
|
||
|
|
* 主键
|
||
|
|
*/
|
||
|
|
private Integer id;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 运营商id
|
||
|
|
*/
|
||
|
|
private String merchantId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 站点id
|
||
|
|
*/
|
||
|
|
private String stationId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 汇付会员id(参与分成的汇付id, 自己的或者别人的)
|
||
|
|
*/
|
||
|
|
private String adapayMemberId;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 电费分成比例
|
||
|
|
*/
|
||
|
|
private BigDecimal electricitySplitRatio;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 服务费分成比例
|
||
|
|
*/
|
||
|
|
private BigDecimal serviceSplitRatio;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 创建人
|
||
|
|
*/
|
||
|
|
private String createBy;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 创建时间
|
||
|
|
*/
|
||
|
|
private Date createTime;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 更新人
|
||
|
|
*/
|
||
|
|
private String updateBy;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 更新时间
|
||
|
|
*/
|
||
|
|
private Date updateTime;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 删除标识(0-正常;1- 删除)
|
||
|
|
*/
|
||
|
|
private String delFlag;
|
||
|
|
}
|