1
zj
2026-01-14 af7f754c7eeb82a7ec7570d1396ff91848d83ca7
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;
 
}