zyy
2025-08-15 b25b5291764db80c79e24fd60c53d4b2d15640be
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;
 
}