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.
17 lines
322 B
17 lines
322 B
package com.shanzhu.flower.entity;
|
|
|
|
import lombok.Data;
|
|
import lombok.experimental.Accessors;
|
|
|
|
@Data
|
|
@Accessors(chain = true)
|
|
public class Order {
|
|
private int id;
|
|
private String order_guid;
|
|
private String flower;
|
|
private int amount;
|
|
private float price;
|
|
private float state;
|
|
private int uid;
|
|
}
|