xuhy
2024-12-24 74ab6001e79bc11626a77fb789f6d6f42c19fbe8
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;
}