This repository has been archived on 2026-01-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ElmDemo/src/main/java/entities/Merchants.java
2023-03-26 21:38:42 +08:00

15 lines
251 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package entities;
import lombok.Data;
//商家类
@Data
public class Merchants {
private Long id;//商家编号
private String name;//店铺名字
private String address;//店铺地址
private Indent IndentID;//外键订单ID
}