zyy
2025-08-27 f2325419e15661d626edecd9b9063056fa836938
1
2
3
4
5
6
7
8
9
10
11
12
package com.nq.vo.subscribe;
 
import com.nq.pojo.StockSubscribe;
import lombok.Data;
 
@Data
public class StockSubscribeVO  extends StockSubscribe {
 
    //是否已购买 0未购买 1已购买
    private Integer isBuy;
 
}