提交ec同步部分代码
This commit is contained in:
@@ -5,6 +5,7 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@@ -16,6 +17,7 @@ import java.util.Date;
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
public class HyPartnerLabelGroupDO {
|
||||
|
||||
@ApiModelProperty("id")
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hxd
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class GetTagRequest {
|
||||
private Long groupId;
|
||||
private String groupName;
|
||||
private Integer sort;
|
||||
private Integer type;
|
||||
private List<GetTagItem> list;
|
||||
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public static class GetTagItem{
|
||||
private Long classId;
|
||||
private String className;
|
||||
private int sort;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user