| 1234567891011121314151617 |
- package cn.com.goldenwater.dcproj.service.impl.audit;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- /**
- * Created by lhc on 2019/11/1 9:21
- */
- @Service
- @Transactional
- public abstract class ObjUpdateState {
- /**
- * 更新登记表状态
- */
- public abstract void updatState(String regID, String state, String villType);
- }
|