TvInventoryBean.java
307 Bytes
package com.huaheng.api.tv.domain;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class TvInventoryBean {
@JSONField(name = "InventoryCode")
String InventoryCode;
@JSONField(name = "List")
List<TvInventoryListBean> list;
}