| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.ks.lijin.query.BaseDaoQuery; |
| | | import com.yeshi.fanli.entity.SystemEnum; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | |
| | | List<CommonOrder> test(); |
| | | |
| | | List<CommonOrder> list(@Param("query") DaoQuery query,@Param("start")long start,@Param("count")int count); |
| | | |
| | | |
| | | public static class DaoQuery { |
| | | public Integer state; |
| | | public String orderId; |
| | | public Integer sourceType; |
| | | public Date minThirdCreateTime; |
| | | public Date maxThirdCreateTime; |
| | | public List<String> sortList; |
| | | } |
| | | |
| | | } |