xuhy
2025-01-01 768bca2bb612659735a3d904a5a5f27dc5fc1aeb
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;
}