1
zj
2026-01-18 27f6c2275479ab2355f796b427efe7312545a68e
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;
 
}