parent
be09572659
commit
8c3e8e0e3f
@ -0,0 +1,30 @@
|
||||
package enums;
|
||||
|
||||
public enum CollectTypeEnum {
|
||||
SONG(0, "歌曲"), JOURNAL(1, "期刊");
|
||||
|
||||
private Integer type;
|
||||
private String description;
|
||||
|
||||
CollectTypeEnum(int type, String description) {
|
||||
this.type = type;
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public Integer getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public static CollectTypeEnum getByType(Integer type) {
|
||||
for (CollectTypeEnum at : CollectTypeEnum.values()) {
|
||||
if (at.type.equals(type)) {
|
||||
return at;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.luoo.user.service;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class UserCollectService {
|
||||
|
||||
public void saveCollect(String userId, String objectId, Integer collectType) {
|
||||
|
||||
}
|
||||
|
||||
public void deleteUserCollectByUserIdAndObjectIdAndCollectType(String userId, String objectId,
|
||||
Integer collectType) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue