month8.12.cloud/bwie-common/src/main/java/com/bwie/common/domain/Coupon.java

52 lines
700 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bwie.common.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Authorweiran
* @Packagecom.bwie.common.domain
* @ProjectmonthA8.12
* @nameCoupon
* @Date2024/8/12 10:57
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Coupon {
/**
* 券Id
*/
private String couponId;
/**
* 券名
*/
private String couponName;
/**
* 库存量
*/
private String couponNum;
/**
* 价格
*/
private String couponPrice;
/**
* 状态
*/
private String couponStatus;
/**
* 类型Id
*/
private String typeId;
}