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.
21 lines
390 B
21 lines
390 B
package com.zc.business.mapper;
|
|
import com.zc.business.domain.Status;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author mengff
|
|
* @Date 2024/01/04
|
|
*/
|
|
@Repository
|
|
public interface StatusMapper {
|
|
|
|
|
|
|
|
int Add(@Param("status")Status status);
|
|
|
|
List<Status> listStatus(@Param("status")Status status);
|
|
|
|
}
|
|
|