package org.example.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
import org.example.pojo.vo.SaveConfigVo;
|
|
import java.util.List;
|
|
/**
|
* @program: demo
|
* @description:
|
* @create: 2024-07-29 10:46
|
**/
|
@Data
|
public class ConfigCurrency {
|
@TableId(type = IdType.AUTO)
|
private Integer userId;
|
|
private String currency;
|
|
private String buy;
|
|
private String sell;
|
}
|