yml
xuhy
2024-12-31 4e0d57a6c252e9e8e50c3e0a677900ca211829cf
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;
}