This commit is contained in:
Lemon
2023-08-23 15:36:14 +08:00
parent f70a26e714
commit 930486c5ff
8 changed files with 84 additions and 18 deletions

View File

@@ -0,0 +1,32 @@
package com.jsowell.pile.dto.lutongyunting;
import lombok.Data;
/**
* 给指定车辆绑定优惠券
*
* @author Lemon
* @Date 2023/8/23 14:15
*/
@Data
public class BindCouponDTO {
/**
* 优惠券商家标识
*/
private String merchantId;
/**
* 优惠券特殊标识
*/
private String couponId;
/**
* 车牌号码
*/
private String plateNumber;
/**
* 车牌颜色
*/
private String plateColor;
}