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.
keshe/app/dao/CustomerMapper.java

18 lines
337 B

package com.demo.dao;
import com.demo.pojo.Customer;
import com.demo.pojo.CustomerExample;
import java.util.List;
public interface CustomerMapper extends CrudDao<Customer>{
List<Customer> selectByExample(CustomerExample example);
/**
* 开启用户会员状态
* @param id
*/
void enableStatus(int id);
}