yuxc
2024-09-12 2a06a2a8aed92fd2eb4b4570b79f304a1c0caf6d
1
2
3
4
5
6
7
package com.vci.dbsync.entity;
 
public enum Operate {
    insert,        // 缺少则插入
    update,        // 存在则更新
    both,        // 同时实现插入和更新操作
}