无关风月
2024-12-24 f58421b4f18660e5387149128c82cfcdcb003cda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.jilongda.manage.vo;
 
import com.jilongda.manage.model.TFrameGoods;
import com.jilongda.manage.model.TInventory;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "盘点VO")
public class TInventoryVO extends TInventory {
    @ApiModelProperty(value = "店铺名称")
    private String store;
}