33 lines
622 B
Java
33 lines
622 B
Java
package quant.rich.emoney.entity.postgre;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import lombok.Data;
|
|
import lombok.experimental.Accessors;
|
|
|
|
/**
|
|
* 益盟个股策略信息,包含策略类型和日期
|
|
*/
|
|
@Data
|
|
@Accessors(chain=true)
|
|
@TableName("stock_strategy")
|
|
public class StockStrategy {
|
|
|
|
private Integer goodsId ;
|
|
|
|
private LocalDateTime date;
|
|
|
|
private Integer poolId;
|
|
|
|
private String poolName;
|
|
|
|
private Integer strategyId;
|
|
|
|
private String strategyName;
|
|
|
|
private String type;
|
|
|
|
}
|