nidapeng
2024-03-29 128e967421ce351644b3913ca9be5c0d909609c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.dao.business;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.doumee.dao.business.model.ApplyDetail;
import com.doumee.dao.business.model.DuWorktype;
 
import java.util.List;
 
/**
 * @author 江蹄蹄
 * @date 2024/01/16 10:03
 */
public interface DuWorktypeMapper extends BaseMapper<DuWorktype> {
    void insertBatchSomeColumn(List<DuWorktype> list);
 
}