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.
28 lines
407 B
28 lines
407 B
package com.hfkj.model;
|
|
|
|
import com.hfkj.entity.BsOrder;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
public class BsOrderModel extends BsOrder {
|
|
|
|
|
|
/**
|
|
* 关系类型 1:直属好友 2:团队成员
|
|
*/
|
|
private Integer relType;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
private Long userId;
|
|
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
|
|
private BigDecimal gold;
|
|
}
|
|
|