zyy
2025-07-24 ec72fc1827d3e46a99d302dd3c9ca61411c70943
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;
 
}