4555d56fc26da7876a08d3752f43472483e570ee.svn-base 594 B

1234567891011121314151617181920
  1. package cn.com.goldenwater.dcproj.service.impl.audit;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.stereotype.Service;
  4. import org.springframework.transaction.annotation.Transactional;
  5. /**
  6. * @author lhc
  7. * @date 2019/11/14 13:48
  8. */
  9. @Service
  10. @Transactional
  11. public class PersonWaterUpdateState extends ObjUpdateState {
  12. @Autowired
  13. PersonWaterFactory personWaterFactory;
  14. @Override
  15. public void updatState(String regID, String state, String villType) {
  16. personWaterFactory.CreateObj(villType).updatState(regID,state,"");
  17. }
  18. }