Commit f9e8dd23 by Water Wang

optimize

parent 7f589f0d
......@@ -29,4 +29,5 @@ public interface AclCustomerDALService {
*/
AclCustomer findById(Long customerId);
void save(AclCustomer aclCustomer);
}
......@@ -27,4 +27,9 @@ public class AclCustomerDALServiceImpl implements AclCustomerDALService {
public AclCustomer findById(Long customerId) {
return aclCustomerMapper.selectByPrimaryKey(customerId);
}
@Override
public void save(AclCustomer aclCustomer) {
aclCustomerMapper.insertSelective(aclCustomer);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment