update
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
package com.lovenav.dao;
|
||||
|
||||
import com.lovenav.entity.CollectIconList;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface CollectIconListDao {
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(CollectIconList record);
|
||||
|
||||
int insertSelective(CollectIconList record);
|
||||
|
||||
CollectIconList selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByPrimaryKeySelective(CollectIconList record);
|
||||
|
||||
int updateByPrimaryKey(CollectIconList record);
|
||||
}
|
@@ -1,25 +0,0 @@
|
||||
package com.lovenav.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 图标表
|
||||
* ln_collect_icon_list
|
||||
*/
|
||||
@Data
|
||||
public class CollectIconList implements Serializable {
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 网址
|
||||
*/
|
||||
private String urlMd5;
|
||||
|
||||
/**
|
||||
* 图片地址
|
||||
*/
|
||||
private String iconUrl;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
Reference in New Issue
Block a user