You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
460 B
23 lines
460 B
package com.example.demo.domain.entity;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName Wallet
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2026−03-04 11:57
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class Wallet {
|
|
private Integer id; //钱包id
|
|
private String walletName; // 钱包名称
|
|
private Integer priority; // 优先级
|
|
}
|