后台服务
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.

12 lines
466 B

  1. package com.iformall.mapper;
  2. import com.iformall.common.CommonMapper;
  3. import com.iformall.domain.po.sm.UserCreateVideoNum;
  4. import org.apache.ibatis.annotations.Param;
  5. public interface UserCreateVideoNumMapper extends CommonMapper<UserCreateVideoNum, String> {
  6. Boolean addOrSubtractNumberOfTimes(@Param("type") Integer type, @Param("createVideoNum") UserCreateVideoNum createVideoNum, @Param("useCredit") Double useCredit, @Param("time") Double videoTime);
  7. }