mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
update
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.jsowell.pile.domain.agentDev;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 微信第三方平台 类目信息实体
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/7/29 14:21
|
||||
*/
|
||||
@Data
|
||||
public class CategoryInfo {
|
||||
/**
|
||||
* 一级类目
|
||||
*/
|
||||
@JSONField(name = "first_class")
|
||||
private String firstClass;
|
||||
|
||||
/**
|
||||
* 二级类目
|
||||
*/
|
||||
@JSONField(name = "second_class")
|
||||
private String secondClass;
|
||||
|
||||
/**
|
||||
* 三级类目
|
||||
*/
|
||||
@JSONField(name = "third_class")
|
||||
private String thirdClass;
|
||||
|
||||
/**
|
||||
* 一级类目id
|
||||
*/
|
||||
@JSONField(name = "first_id")
|
||||
private String firstId;
|
||||
|
||||
/**
|
||||
* 二级类目id
|
||||
*/
|
||||
@JSONField(name = "second_id")
|
||||
private String secondId;
|
||||
|
||||
/**
|
||||
* 三级类目id
|
||||
*/
|
||||
@JSONField(name = "third_id")
|
||||
private String thirdId;
|
||||
}
|
||||
Reference in New Issue
Block a user