package com.ruoyi.mill.mapper; import com.ruoyi.mill.domain.MillRollChange; import java.util.List; public interface MillRollChangeMapper { List selectList(MillRollChange query); MillRollChange selectLatest(); int insert(MillRollChange change); }