You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
377 B
18 lines
377 B
package com.hfkj.model;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.hfkj.entity.BsStoreGroupContent;
|
|
import com.hfkj.entity.BsStoreGroupServeRule;
|
|
import com.hfkj.entity.BsStoreImg;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class GroupContentModel {
|
|
|
|
private List<JSONObject> groupDetails;
|
|
|
|
private BsStoreGroupServeRule storeGroupServeRule;
|
|
|
|
}
|
|
|